.wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.wrap h2 {
  font-size: 5.25vw;
}
@media only screen and (min-width: 641px) {
  .wrap h2 {
    font-size: 24px;
  }
}
.wrap h3 {
  font-weight: normal;
  font-size: 4.5vw;
}
@media only screen and (min-width: 641px) {
  .wrap h3 {
    font-size: 20px;
  }
}
.wrap h4 {
  font-weight: normal;
  font-size: 4vw;
}
@media only screen and (min-width: 641px) {
  .wrap h4 {
    font-size: 16px;
  }
}
.wrap h5 {
  font-weight: normal;
  line-height: 150%;
  font-size: 3.25vw;
}
@media only screen and (min-width: 641px) {
  .wrap h5 {
    font-size: 14px;
  }
}

.bg {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
  overflow: hidden;
}
.bg div {
  position: relative;
  width: 12.5vw;
  height: 12.5vw;
  margin: 0;
  background: #FFF;
  box-shadow: 1px 1px 0 #EEE, -1px -1px 0 #EEE, 1px -1px 0 #EEE, -1px 1px 0 #EEE;
}
.bg div p {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
}
.bg div p.right {
  left: auto;
  right: 0;
}
.bg div p.bottom {
  top: auto;
  bottom: 0;
}
.bg div p.size-1 {
  width: 100%;
  height: 100%;
}
.bg div p.size-2 {
  width: 200%;
  height: 200%;
}
.bg div p.topleft {
  border-top-left-radius: 100%;
}
.bg div p.bottomleft {
  border-bottom-left-radius: 100%;
}
.bg div p.topright {
  border-top-right-radius: 100%;
}
.bg div p.bottomright {
  border-bottom-right-radius: 100%;
}
.bg div p.circle {
  border-radius: 50%;
  -webkit-border-radius: 50%;
}
.bg div p.green {
  background: #00ff01;
}
.bg div p.blue {
  background: #0000fe;
}

.lan-wrap {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.lan-wrap a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 12.5vw;
  height: 12.5vw;
  background: #00ff01;
  color: #0000fe;
  font-size: 5.25vw;
}
@media only screen and (min-width: 641px) {
  .lan-wrap a {
    font-size: 24px;
  }
}
.lan-wrap a.active {
  background: #0000fe;
  color: #00ff01;
}

.kv {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/kv.jpg") no-repeat center center;
  background-size: cover;
}
.kv .logos {
  position: absolute;
  display: block;
  top: 0;
  right: 3%;
  height: 12.5vw;
  padding: 3.75% 0;
}
.kv .kv-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 60%;
  width: 90%;
}
.kv .btn-kv {
  display: block;
  position: absolute;
  bottom: 3%;
  left: 0;
  right: 0;
  margin: auto;
  width: 18vh;
  opacity: 0;
  transform: translateY(50%);
  animation: fadein 0.5s 0.5s forwards;
}
@keyframes fadein {
  to {
    opacity: 1;
    transform: none;
  }
}
.kv .btn-kv .btn-inside {
  animation: breathe 1s infinite alternate;
}
@keyframes breathe {
  to {
    transform: scale(0.9);
  }
}
.kv .btn-kv .btn-outside {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: spin 10s linear infinite;
}
@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(359deg);
  }
}
.kv .btn-kv::after {
  display: block;
  content: "";
  width: 200%;
  height: 200%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url("../img/btn-arrow.png") no-repeat center center;
  background-size: cover;
}

.info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.info .info-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  margin: auto;
  padding-top: 10%;
}
.info .btn-info {
  position: relative;
  display: inline-block;
  color: #00ff01;
  background: #0000fe;
  font-size: 5.25vw;
  padding: 4vw 7vw;
  font-weight: bold;
  border-radius: 10vw;
  -webkit-border-radius: 10vw;
  filter: grayscale(1) invert(0.75);
  pointer-events: none;
  margin-top: 5vh;
  overflow: hidden;
}
@media only screen and (min-width: 641px) {
  .info .btn-info {
    font-size: 24px;
  }
}
.info .btn-info.active {
  pointer-events: all;
  filter: none;
}
@media only screen and (min-width: 641px) {
  .info .btn-info {
    padding: 20px 50px;
  }
}
.info .btn-info .buffer {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
}
.info .btn-info .buffer::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20%;
  padding-top: 20%;
  height: 0;
  border: 3px solid #0000fe;
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  animation: buffer 1s linear infinite;
}
@keyframes buffer {
  to {
    transform: translate(-50%, -50%) rotate(359deg);
  }
}
.info form {
  width: 70%;
  margin: 0 auto;
}
.info .info-fail {
  z-index: 9;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.75);
}
.info .info-fail > div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75%;
  background: #00ff01;
  text-align: center;
  padding: 12% 5% 8% 5%;
  border-radius: 3vw;
  -webkit-border-radius: 3vw;
}
.info .info-fail > div .btn-info-fail {
  display: inline-block;
  color: #00ff01;
  background: #0000fe;
  font-size: 5.25vw;
  padding: 4vw 7vw;
  font-weight: bold;
  border-radius: 10vw;
  -webkit-border-radius: 10vw;
  filter: grayscale(1) invert(0.75);
  pointer-events: none;
  margin-top: 10%;
}
@media only screen and (min-width: 641px) {
  .info .info-fail > div .btn-info-fail {
    font-size: 24px;
  }
}
.info .info-fail > div .btn-info-fail.active {
  pointer-events: all;
  filter: none;
}
@media only screen and (min-width: 641px) {
  .info .info-fail > div .btn-info-fail {
    padding: 20px 50px;
  }
}

.bag {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.bag .bag-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  margin: auto;
  padding-top: 10%;
}
.bag .bag-wrap article {
  width: 80%;
  margin: 0 auto;
}
.bag .bag-wrap article [data-lan-target=en] .bag-choose {
  justify-content: flex-start;
  padding-left: 11vw;
  font-size: 4vw;
}
@media only screen and (min-width: 641px) {
  .bag .bag-wrap article [data-lan-target=en] .bag-choose {
    font-size: 16px;
  }
}
.bag .bag-wrap article .bag-choose {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 10vw;
  margin: 3% 0;
  background: #00ff01;
  font-size: 4.5vw;
  border-radius: 10vw;
  -webkit-border-radius: 10vw;
}
@media only screen and (min-width: 641px) {
  .bag .bag-wrap article .bag-choose {
    font-size: 20px;
  }
}
.bag .bag-wrap article .bag-choose.active {
  color: #00ff01;
  background: #0000fe;
}
.bag .bag-wrap article .bag-choose.active p {
  color: #0000fe;
  background: #00ff01;
}
.bag .bag-wrap article .bag-choose p {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
  background: #0000fe;
  width: 8vw;
  height: 8vw;
  top: 1vw;
  left: 1vw;
  border-radius: 50%;
  -webkit-border-radius: 50%;
}
.bag .bag-wrap .btn-bag-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  width: 100%;
  margin-top: 8vh;
}
.bag .bag-wrap .btn-bag-flex a {
  display: inline-block;
  color: #00ff01;
  background: #0000fe;
  font-size: 5.25vw;
  padding: 4vw 7vw;
  font-weight: bold;
  border-radius: 10vw;
  -webkit-border-radius: 10vw;
  filter: grayscale(1) invert(0.75);
  pointer-events: none;
}
@media only screen and (min-width: 641px) {
  .bag .bag-wrap .btn-bag-flex a {
    font-size: 24px;
  }
}
.bag .bag-wrap .btn-bag-flex a.active {
  pointer-events: all;
  filter: none;
}
@media only screen and (min-width: 641px) {
  .bag .bag-wrap .btn-bag-flex a {
    padding: 20px 50px;
  }
}

.work {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.work .work-wrap .work-top {
  margin-top: 18.75vw;
}
.work .work-wrap .work-bottom {
  margin-top: 84.375vw;
}
.work .work-wrap article {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  top: 37.5vw;
  margin: auto;
  right: 0;
  left: 0;
  width: 75vw;
  height: 75vw;
  background: #00ff01;
  white-space: nowrap;
  border-radius: 50%;
  -webkit-border-radius: 50%;
}
.work .work-wrap article p {
  font-size: 6.5vw;
  margin: 6% 0;
}
.work .work-wrap article span {
  display: block;
  font-size: 10vw;
}
.work .work-wrap .btn-work-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10%;
  width: 100%;
  margin-top: 3vh;
}
.work .work-wrap .btn-work-flex a {
  display: inline-block;
  color: #00ff01;
  background: #0000fe;
  font-size: 5.25vw;
  padding: 4vw 7vw;
  font-weight: bold;
  border-radius: 10vw;
  -webkit-border-radius: 10vw;
  filter: grayscale(1) invert(0.75);
  pointer-events: none;
}
@media only screen and (min-width: 641px) {
  .work .work-wrap .btn-work-flex a {
    font-size: 24px;
  }
}
.work .work-wrap .btn-work-flex a.active {
  pointer-events: all;
  filter: none;
}
@media only screen and (min-width: 641px) {
  .work .work-wrap .btn-work-flex a {
    padding: 20px 50px;
  }
}

.upload {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.upload .upload-wrap .upload-top {
  margin-top: 25vw;
}
.upload .upload-wrap .upload-bottom {
  margin-top: 75vw;
}
.upload .upload-wrap .crop-block {
  position: absolute;
  top: 37.5vw;
  margin: auto;
  right: 0;
  left: 0;
  width: 50vw;
  height: 65.625vw;
  background: url("../img/photo-temp.png") #00ff01 no-repeat center bottom;
  background-size: 80% auto;
  border-radius: 3vw;
  -webkit-border-radius: 3vw;
  border: 1px solid #0000fe;
  overflow: hidden;
}
.upload .upload-wrap .crop-block .result {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.upload .upload-wrap .crop-block .result .cropper-container,
.upload .upload-wrap .crop-block .result img {
  display: block;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}
.upload .upload-wrap .crop-block .cropper-bg {
  background: none;
}
.upload .upload-wrap .crop-block .cropper-point,
.upload .upload-wrap .crop-block .cropper-line {
  background-color: #0000fe;
}
.upload .upload-wrap .crop-block .img-result {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.upload .upload-wrap .crop-block .img-result img {
  display: block;
  width: 100%;
}
.upload .upload-wrap .btn-upload-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10%;
  width: 100%;
  margin-top: 5vh;
}
.upload .upload-wrap .btn-upload-flex a {
  display: inline-block;
  color: #00ff01;
  background: #0000fe;
  font-size: 5.25vw;
  padding: 4vw 7vw;
  font-weight: bold;
  border-radius: 10vw;
  -webkit-border-radius: 10vw;
  filter: grayscale(1) invert(0.75);
  pointer-events: none;
}
@media only screen and (min-width: 641px) {
  .upload .upload-wrap .btn-upload-flex a {
    font-size: 24px;
  }
}
.upload .upload-wrap .btn-upload-flex a.active {
  pointer-events: all;
  filter: none;
}
@media only screen and (min-width: 641px) {
  .upload .upload-wrap .btn-upload-flex a {
    padding: 20px 50px;
  }
}

.buffer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.buffer .buffer-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 80%;
  height: 100%;
  margin: auto;
  text-align: center;
}
.buffer .buffer-wrap h2 {
  margin: 8% 0 2.5% 0;
}
.buffer .buffer-wrap .buffer-circle {
  position: relative;
  width: 25vw;
  height: 25vw;
  border: 1px solid #0000fe;
  border-radius: 50%;
  -webkit-border-radius: 50%;
}
.buffer .buffer-wrap .buffer-circle::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  top: -1px;
  left: -1px;
  border: 1px solid #00ff01;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  opacity: 0.5;
  animation: water 1.5s infinite;
}
@keyframes water {
  to {
    opacity: 0;
    transform: scale(2);
  }
}
.buffer .buffer-wrap .buffer-circle p,
.buffer .buffer-wrap .buffer-circle span,
.buffer .buffer-wrap .buffer-circle div {
  display: block;
  position: absolute;
  width: 1vw;
  height: 25%;
  bottom: 50%;
  left: 0;
  right: 0;
  margin: auto;
  transform-origin: bottom;
  background: #00ff01;
  border-radius: 3vw;
  -webkit-border-radius: 3vw;
}
.buffer .buffer-wrap .buffer-circle div {
  height: 1vw;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  transform: translateY(50%);
}
.buffer .buffer-wrap .buffer-circle p {
  animation: clock 7s infinite linear;
}
.buffer .buffer-wrap .buffer-circle span {
  height: 35%;
  animation: clock 2.5s -2s infinite linear;
}
@keyframes clock {
  to {
    transform: rotate(359deg);
  }
}
.buffer .buffer-wrap .buffer-fail {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75%;
  background: #00ff01;
  text-align: center;
  padding: 12% 5% 8% 5%;
  border-radius: 3vw;
  -webkit-border-radius: 3vw;
}
.buffer .buffer-wrap .buffer-fail .btn-buffer-re {
  display: inline-block;
  color: #00ff01;
  background: #0000fe;
  font-size: 5.25vw;
  padding: 4vw 7vw;
  font-weight: bold;
  border-radius: 10vw;
  -webkit-border-radius: 10vw;
  filter: grayscale(1) invert(0.75);
  pointer-events: none;
  margin-top: 10%;
}
@media only screen and (min-width: 641px) {
  .buffer .buffer-wrap .buffer-fail .btn-buffer-re {
    font-size: 24px;
  }
}
.buffer .buffer-wrap .buffer-fail .btn-buffer-re.active {
  pointer-events: all;
  filter: none;
}
@media only screen and (min-width: 641px) {
  .buffer .buffer-wrap .buffer-fail .btn-buffer-re {
    padding: 20px 50px;
  }
}

.photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.photo .photo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 90%;
  height: 100%;
  margin: auto;
  padding-top: 10%;
}
.photo .photo-wrap .photo-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 10% 0;
}
.photo .photo-wrap .photo-block a {
  display: block;
  width: 48%;
  padding-top: 63.84%;
  border: 3px solid transparent;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: cover !important;
}
.photo .photo-wrap .photo-block a.active {
  border-color: #00ff01;
  border-radius: 3vw;
  -webkit-border-radius: 3vw;
}
.photo .photo-wrap .btn-photo-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 5%;
  margin-top: 10vh;
}
.photo .photo-wrap .btn-photo-flex a {
  display: inline-block;
  color: #00ff01;
  background: #0000fe;
  font-size: 5.25vw;
  padding: 4vw 7vw;
  font-weight: bold;
  border-radius: 10vw;
  -webkit-border-radius: 10vw;
  filter: grayscale(1) invert(0.75);
  pointer-events: none;
}
@media only screen and (min-width: 641px) {
  .photo .photo-wrap .btn-photo-flex a {
    font-size: 24px;
  }
}
.photo .photo-wrap .btn-photo-flex a.active {
  pointer-events: all;
  filter: none;
}
@media only screen and (min-width: 641px) {
  .photo .photo-wrap .btn-photo-flex a {
    padding: 20px 50px;
  }
}
.photo .photo-wrap .btn-startover {
  margin-top: 5%;
}

.done {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.done .done-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 90%;
  height: 100%;
  margin: auto;
  padding-top: 15%;
  text-align: center;
}
.done .done-wrap h2 {
  font-weight: normal;
}
.done .done-wrap p {
  font-size: 8vw;
  margin: 3% 0;
  width: 100%;
  font-weight: bold;
}
.done .done-wrap .done-img {
  display: block;
  width: 50vw;
  border: 3px solid #00ff01;
  border-radius: 3vw;
  -webkit-border-radius: 3vw;
  margin: 3% 0;
}
.done .done-wrap .btn-done-add {
  display: inline-block;
  color: #00ff01;
  background: #0000fe;
  font-size: 5.25vw;
  padding: 4vw 7vw;
  font-weight: bold;
  border-radius: 10vw;
  -webkit-border-radius: 10vw;
  filter: grayscale(1) invert(0.75);
  pointer-events: none;
  margin-top: 5vh;
}
@media only screen and (min-width: 641px) {
  .done .done-wrap .btn-done-add {
    font-size: 24px;
  }
}
.done .done-wrap .btn-done-add.active {
  pointer-events: all;
  filter: none;
}
@media only screen and (min-width: 641px) {
  .done .done-wrap .btn-done-add {
    padding: 20px 50px;
  }
}
.done .done-wrap .logos {
  display: block;
  background: #0000fe;
  padding: 3%;
  margin: 1.5vh auto;
  width: 50vw;
}

.privacy {
  display: none;
  z-index: 9;
  position: absolute;
  color: #000;
  background: #FFF;
  width: 100%;
  height: 100%;
  padding: 8%;
  font-size: 3.25vw;
  line-height: 150%;
  text-align: justify;
}
@media only screen and (min-width: 641px) {
  .privacy {
    font-size: 14px;
  }
}
.privacy .privacy-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.privacy .privacy-close {
  display: block;
  position: absolute;
  top: 3%;
  right: 3%;
  width: 5%;
  filter: brightness(0.5) invert(1);
}
.privacy h2 {
  color: #0000fe;
  text-align: center;
  margin-bottom: 10%;
}
.privacy article {
  height: 80%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.privacy article [data-lan-target=en] {
  text-align: left;
}

.expire {
  z-index: 999;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
}
.expire .expire-block {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75%;
  background: #00ff01;
  text-align: center;
  padding: 10% 5%;
  font-size: 5vw;
  border-radius: 3vw;
  -webkit-border-radius: 3vw;
}

@media only screen and (min-width: 1025px) {
  .kv-pc {
    z-index: 999;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100%;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: cover !important;
  }
  .kv-pc > div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: contain !important;
  }
  .expire {
    font-size: 4vw;
    line-height: 150%;
  }
}
@media only screen and (min-width: 641px) {
  .bg div {
    width: 80px;
    height: 80px;
  }
  .lan-wrap a {
    width: 80px;
    height: 80px;
  }
  .kv .logos {
    height: 80px;
  }
  .info .info-fail > div {
    border-radius: 20px;
    -webkit-border-radius: 20px;
  }
  .bag .bag-wrap article [data-lan-target=en] .bag-choose {
    padding-left: 55px;
  }
  .bag .bag-wrap article .bag-choose {
    height: 50px;
  }
  .bag .bag-wrap article .bag-choose p {
    width: 36px;
    height: 36px;
    top: 7px;
    left: 7px;
  }
  .work .work-wrap .work-top {
    margin-top: 80px;
  }
  .work .work-wrap .work-bottom {
    margin-top: 520px;
  }
  .work .work-wrap article {
    top: 160px;
    width: 480px;
    height: 480px;
  }
  .work .work-wrap article p {
    font-size: 40px;
    margin: 10% 0;
  }
  .work .work-wrap article span {
    font-size: 50px;
  }
  .upload .upload-wrap .upload-top {
    margin-top: 100px;
  }
  .upload .upload-wrap .upload-bottom {
    margin-top: 480px;
  }
  .upload .upload-wrap .crop-block {
    top: 160px;
    width: 320px;
    height: 420px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
  }
  .buffer .buffer-wrap .buffer-circle {
    width: 160px;
    height: 160px;
  }
  .buffer .buffer-wrap .buffer-circle p,
  .buffer .buffer-wrap .buffer-circle span,
  .buffer .buffer-wrap .buffer-circle div {
    width: 8px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
  }
  .buffer .buffer-wrap .buffer-circle div {
    height: 8px;
  }
  .buffer .buffer-wrap .buffer-fail {
    border-radius: 20px;
    -webkit-border-radius: 20px;
  }
  .photo .photo-wrap .photo-block a.active {
    border-radius: 20px;
    -webkit-border-radius: 20px;
  }
  .done .done-wrap p {
    font-size: 50px;
    margin: 5% 0 3% 0;
  }
  .done .done-wrap .done-img {
    width: 320px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
  }
  .done .done-wrap .logos {
    width: 240px;
  }
}/*# sourceMappingURL=index.css.map */