@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@400;500;800&display=swap");
* {
  font-family: "M PLUS 1p", sans-serif;
}

.section03 {
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.section03 .inner {
  width: 200%;
  margin-left: -50%;
  background-color: #FFDBDB;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  padding-top: 10%;
  padding-bottom: 10%;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}
@media screen and (max-width: 900px) {
  .section03 .inner {
    width: 400%;
    margin-left: -150%;
    padding-bottom: 20%;
    padding-top: 20%;
  }
}
.section03 .inner .bg-text {
  position: absolute;
  left: 0;
  top: -70%;
  width: 100%;
  z-index: 0;
  will-change: transform;
}
@media screen and (max-width: 900px) {
  .section03 .inner .bg-text {
    top: -30%;
  }
}
.section03 .inner .contents {
  position: relative;
  z-index: 1;
  max-width: 38.5%;
  margin: auto;
}
.section03 .inner .contents .ttl {
  width: 623px;
  margin: auto;
  margin-bottom: 30px;
}
@media screen and (max-width: 900px) {
  .section03 .inner .contents .ttl {
    width: 63vw;
  }
}
.section03 .inner .contents .ttl img {
  width: 100%;
}
.section03 .inner .contents .sub-ttl {
  text-align: center;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 15%;
  transform: rotate(0.05deg);
}
@media screen and (max-width: 900px) {
  .section03 .inner .contents .sub-ttl {
    font-size: 4vw;
    margin-top: 5%;
    margin-bottom: 10%;
  }
}
.section03 .inner .contents .to-question {
  cursor: pointer;
  position: absolute;
  top: 6%;
  left: 90%;
  width: 120px;
  height: 120px;
  text-align: center;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media screen and (max-width: 1000px) {
  .section03 .inner .contents .to-question {
    transform: scale(0.9);
    left: 95%;
  }
}
@media screen and (max-width: 900px) {
  .section03 .inner .contents .to-question {
    position: static;
    width: 21.3vw;
    height: 21.3vw;
    transform: scale(1);
    margin: auto;
    margin-bottom: 5%;
  }
}
.section03 .inner .contents .to-question:hover .white {
  transform: scale(1.2);
}
.section03 .inner .contents .to-question .white {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  border-radius: 50%;
  z-index: 0;
  transition-duration: 0.3s;
}
.section03 .inner .contents .to-question svg {
  position: relative;
  z-index: 1;
  width: 27px;
  margin-bottom: 5px;
}
@media screen and (max-width: 900px) {
  .section03 .inner .contents .to-question svg {
    width: 22.5%;
    margin-bottom: 5%;
  }
}
.section03 .inner .contents .to-question span {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: #FF5AA0;
  transform: rotate(0.05deg);
}
@media screen and (max-width: 900px) {
  .section03 .inner .contents .to-question span {
    font-size: 2.6vw;
    line-height: 1.2;
  }
}
.section03 .inner .contents .card-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4%;
  flex-wrap: wrap;
  max-width: 1050px;
  margin: auto;
  margin-bottom: 100px;
}
@media screen and (max-width: 900px) {
  .section03 .inner .contents .card-wrap {
    width: 100vw;
    margin: auto;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 5%;
  }
}
.section03 .inner .contents .card-wrap .card {
  width: 47%;
  opacity: 0;
  transition-duration: 0.5s;
  margin-bottom: 2%;
}
@media screen and (max-width: 900px) {
  .section03 .inner .contents .card-wrap .card {
    width: 69.3vw;
    transition-delay: 0s !important;
    margin-bottom: 3%;
  }
}
.section03 .inner .contents .card-wrap .card.view {
  transform: rotate(0deg) !important;
  opacity: 1;
}
.section03 .inner .contents .card-wrap .card:nth-of-type(1) {
  transform-origin: left bottom;
  transform: rotate(-20deg);
}
.section03 .inner .contents .card-wrap .card:nth-of-type(2) {
  transition-delay: 0.1s;
  transform-origin: left bottom;
  transform: rotate(-20deg);
}
@media screen and (max-width: 900px) {
  .section03 .inner .contents .card-wrap .card:nth-of-type(2) {
    transform-origin: right bottom;
    transform: rotate(20deg);
  }
}
.section03 .inner .contents .card-wrap .card:nth-of-type(2) img {
  width: 102%;
  margin-bottom: 2%;
}
@media screen and (max-width: 900px) {
  .section03 .inner .contents .card-wrap .card:nth-of-type(2) img {
    width: 100%;
    margin-bottom: 0;
  }
}
.section03 .inner .contents .card-wrap .card:nth-of-type(3) {
  transition-delay: 0.2s;
  transform-origin: right bottom;
  transform: rotate(20deg);
}
@media screen and (max-width: 900px) {
  .section03 .inner .contents .card-wrap .card:nth-of-type(3) {
    transform-origin: left bottom;
    transform: rotate(-20deg);
  }
}
.section03 .inner .contents .card-wrap .card:nth-of-type(3) img {
  width: 104%;
}
@media screen and (max-width: 900px) {
  .section03 .inner .contents .card-wrap .card:nth-of-type(3) img {
    width: 100%;
  }
}
.section03 .inner .contents .card-wrap .card:nth-of-type(4) {
  transition-delay: 0.2s;
  transform-origin: right bottom;
  transform: rotate(20deg);
}
.section03 .inner .contents .card-wrap .card:nth-of-type(4) img {
  width: 104%;
}
@media screen and (max-width: 900px) {
  .section03 .inner .contents .card-wrap .card:nth-of-type(4) img {
    width: 100%;
  }
}
.section03 .inner .contents .card-wrap .card img {
  width: 100%;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.section03 .inner .detail-btn {
  display: block;
  background-color: #FF5AA0;
  color: white;
  font-size: 22px;
  font-weight: 800;
  text-align: center;
  padding: 54.5px 0;
  position: relative;
  width: 600px;
  margin: 0 auto;
  border-radius: 30px;
}
@media screen and (max-width: 900px) {
  .section03 .inner .detail-btn {
    width: 84vw;
    font-size: 4.2vw;
    letter-spacing: 0.2vw;
    text-align: left;
    padding: 4%;
    border-radius: 15px;
  }
}
.section03 .inner .detail-btn:hover .arrow {
  background-color: #FF5AA0 !important;
}
.section03 .inner .detail-btn:hover .arrow svg path {
  stroke: white;
}
.section03 .inner .detail-btn .arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  margin: auto;
  width: 50px;
  height: 50px;
  background-color: white;
  border: solid 1px white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition-duration: 0.3s;
}
@media screen and (max-width: 900px) {
  .section03 .inner .detail-btn .arrow {
    width: 8vw;
    height: 8vw;
    right: 4%;
  }
}
.section03 .inner .detail-btn .arrow svg {
  width: 10px;
}
@media screen and (max-width: 900px) {
  .section03 .inner .detail-btn .arrow svg {
    width: 22.5%;
  }
}/*# sourceMappingURL=section03.css.map */