html, body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    overscroll-behavior-y: none; 
    background-color: #fff;
}
a {
    color: #fb4875;
}
h1 {
    margin: 0;
}
.wrapper {
    height: 100vh;                 
    height: 100svh;               
    height: 100dvh; 
    overflow-x: hidden;
    overflow-y: auto; 
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain; 
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: #fbbdce;
    font-family: "Noto Sans JP", sans-serif;
    color: #343434;
}
.wrapper * {
    box-sizing: border-box;
    max-width: 100%;
    text-decoration: none;
}
header {
    background-color: #fef6f8;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.header-logo {
    width: 40%;
    height: auto;
    padding: 10px;
}
.lp-kv {
    width: 100%;
    height: fit-content;
    background-color: #fbbdce;
    position: relative;
}
.kv-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: #fff;
    background-image: linear-gradient(#fe519d, #fa0370);
    box-shadow: 0 5px 0 0 #e50067;
    border-radius: 60px;
    padding: 10px 0 10px 0px;
    width: 80%;
    margin: 0 auto;
    position: absolute;
    bottom: 20px;
    left: 10%;
    cursor: pointer;
    animation-name: updown1;
    animation-delay: 0s;
    animation-duration: 3s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    font-size: 1.3rem;
}
@keyframes updown1 {
    0% { transform: translateY(-2px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(-2px); }
}

.kv-btn:hover {
    background-color: #fe519d;
    box-shadow: 0 4px 0 0 #e50067;
    transform: translateY(3px);
}
.kv-btn h2 {
    margin: 0;
}
.kv-btn > img {
    width: 50px;
    height: 50px;
    position: relative;
    right: -20px;
}
.text-pink {
    color: #fb4875;
    font-weight: 600 !important;
}
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fbbdce;
    width: 100%;
    margin-top: -2px;
}
.intro-box {
    width: 90%;
    background-color: white;
    border-width: 1px 5px 3px 1px; 
    border-style: solid;
    border-color: #fb4875;
    border-radius: 20px;
    margin: 30px auto;
    padding: 15px 15px 0px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.intro-box > h3 {
    position: absolute;
    top: 0%;
    left: 0%;
    width: 80%;
    transform: translate(15%, -65%);
}
h4 {
    font-size: clamp(0.6rem, 3vw, 1rem);
    margin: 3.5% 0;
}
.content {
    margin-top: 3.5%;
}
.content > h4 {
    position: relative;
    padding-left: 22px;
    font-size: 1.0rem;
    font-weight: normal;
}
.content > h4::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 2%;
    transform: translate(-50%, -50%);
    width: clamp(1rem, 4vw, 1.5rem); 
    height: clamp(1rem, 4vw, 1.5rem);
    background-color: #fb4875; 
    border-radius: 50%; 
    background-image: url('/common/images/renew/lp/check.png');
    background-size: 60%; 
    background-repeat: no-repeat;
    background-position: center;
}
.intro-box > h4 {
    border-bottom: 1px dotted #fb4875;
    position: relative;
    font-size: 1.0rem;
    margin-bottom: 20px;
}
.intro-box > h4::after {
    content: "";
    position: absolute;
    top: -70%;
    right: -5%;
    width: clamp(1rem, 4vw, 1.5rem); 
    height: clamp(1rem, 4vw, 1.5rem);
    background-image: url('/common/images/renew/lp/star.webp');
    background-size: 100%; 
    background-repeat: no-repeat;
    background-position: center;
}
footer{
    background-color: #fef6f8;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 10px;
    font-size: clamp(0.4rem, 2vw, 0.8rem);
    color:#fb4875;
    padding: 10px 5%;
}
footer > a {
    color:#ed94ac;
}

/* question */
.back-pink-check {
    background-color: none;
    background-image: url('/common/images/renew/lp/back-pink-check.webp');
    background-size: cover; 
    background-repeat: no-repeat;
    background-position: center;
}

.question-box {
    width: 95%;
    background-color: white;
    border-radius: 20px;
    margin: 60px auto 60px;
    padding: 10% 5px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #043e7e;
    font-weight: bold;
}
.number {
    position: absolute;
    top: 0; 
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid #43a8fe;
    background-color: #a1d4ff;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
    width: clamp(4rem, 8vw, 5rem);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-family: "BIZ UDGothic", sans-serif;
}

.question-content {
    text-align: center;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    line-height: 1.4;
    margin: 10px 0 5px;
}
.note {
    font-size: clamp(0.8rem, 2vw, 1rem);
    text-align: center;
}

.answer-list {
    width: 95%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}
.answer {
    width: 100%;
    padding: 8px 10px;
    background: repeating-linear-gradient(315deg, #feb5c8, #feb5c8 2px, #fbbdcd 0, #fbbdcd 4px);
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: clamp(0.8rem, 2.5vw, 21px);
    cursor: pointer;
    box-shadow: 2px 3px 0px 0px rgba(251, 147, 174, 1.0);
}
.answer-content {
    font-size: 1.0rem;
}
.answer-character {
    border-radius: 50%;
    background-color: #fff;
    font-size: clamp(1.5rem, 4vw, 2rem);
    width: clamp(2.5rem, 5vw, 4rem);
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.progress-container {
    width: 100%;
    height: 15px;
    background-color: #808080;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 10px;
}

.question-footer {
    margin-top: 30px;
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
}

.progress-bar {
    width: 0%;
    height: 100%;
    background-color: #fb93ae;
    transition: width 0.3s ease;
    border-radius: 5px 0 0 5px;
}

.number-question {
    position: relative;
    display: inline-block;
    font-weight: bold;
    color: #003366;
    text-align: center;
    width: fit-content;
  }
.number-question-content {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
}
  
  /* left top */
  .number-question::before {
    content: "";
    position: absolute;
    left: -20px;
    bottom: 5px;
    width: 0;
    height: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: clamp(2rem, 4vw, 2.5rem) solid #003366;
    transform: rotate(-35deg);
  }
  
  /* left bottom */
  .number-question::after {
    content: "";
    position: absolute;
    left: -30px;
    bottom: 5px;
    width: 0;
    height: 0;
    border-left: 2px solid transparent;
    border-right: 2px solid transparent;
    border-top: clamp(1.5rem, 3.2vw, 2rem) solid #003366;
    transform: rotate(-45deg);
  }
  
  /* right top */
  .number-question span::before {
    content: "";
    position: absolute;
    right: -20px;
    bottom: 5px;
    width: 0;
    height: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: clamp(2rem, 4vw, 2.5rem) solid #003366;
    transform: rotate(35deg);
  }
  
  /* right bottom */
  .number-question span::after {
    content: "";
    position: absolute;
    right: -30px;
    bottom: 5px;
    width: 0;
    height: 0;
    border-left: 2px solid transparent;
    border-right: 3px solid transparent;
    border-top: clamp(1.5rem, 3.2vw, 2rem) solid #003366;
    transform: rotate(45deg);
  }

.check-result {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    width: fit-content;
    padding: 0px 15px 0px 45px;
    background-image: linear-gradient(#fe519d, #fa0370);
    color: #fff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    letter-spacing: 1px;
}

.check-result > img {
    width: clamp(2.5rem, 3vw, 5rem);
    aspect-ratio: 1/1;
    vertical-align: middle;
    margin-right: 10px;
}

/* result */
.back-pink {
    background-image: url('/common/images/renew/lp/back-pink.webp');
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.result-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.result-box-wrapper {
    width: 90%;
    text-align: center;
    margin-top: 50px;
}
.result-label {
    width: 100%;
    padding: 0 10px 10px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #646464;
}

.result-box {
    background-color: white;
    border-radius: 15px ;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    border: 1px solid #fb93ae;
    outline: 5px solid white;
    box-shadow: 0 0 0 8px #fb93ae;
    padding: 22px 0;
}

.result-box::before, .result-box::after {
    content: "";
    position: absolute;
    top: -14%;
    width: 25%;
    height: 50%;
    background-size: 100%; 
    background-repeat: no-repeat;
    background-position: center;
}
.result-box::before {
    left: 0;
    background-image: url('/common/images/renew/lp/star01.webp');
    background-size: 40%;
}
.result-box::after {
    right: 0;
    background-image: url('/common/images/renew/lp/star02.webp');
    background-size: 40%;
}
.result-box-subtit {
    background-image: repeating-linear-gradient(305deg, #ff7899, #ff7899 3px, #ff5d85 3px, #ff5d85 6px);
    line-height: 1.3;
    padding: 3px 0;
}
.result-box-subtit span {
    font-size: 1.3rem;
}
.result-box-content > span {
    font-size: 1.5rem;
    color: #043e7e;
}
.result-box-content-text {
    color: #343434;
    font-size: clamp(0.8rem, 2.5vw, 1.1rem);
    font-weight: normal;
    text-align: left;
    padding: 30px 10px 0;
}
.share-label {
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    position: relative;
    margin: 30px 0 10px;
    text-align: center;
}

.share-label::after {
    content: "";
    position: absolute;
    right: 60px;
    bottom: -5px;
    width: 2px;
    height: 36px;
    transform: rotate(30deg);
    background-color: #fff;
}
.share-label::before {
    content: "";
    position: absolute;
    left: 60px;
    bottom: -5px;
    width: 2px;
    height: 36px;
    transform: rotate(-30deg);
    background-color: #fff;
}
.share-btn {
    width: 60%;
    padding-bottom: 30px;
    margin: 0 auto;
}
#share-btn-link {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #fb4875;
    border-radius: 50px;
    border: 1px solid #fb4875;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    padding: 0.6vw;
    background-color: #fff;
}
#share-btn-link > img {
    width: 40px;
    aspect-ratio: 1/1;
}
.sns-back {
    position: relative;
    width: 100%;
    background-image: url("/common/images/renew/lp/back-sns.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    margin-top: 50px;
}
#svg-bg {
    position: absolute;
}
.genre-box {
    width: 90%;
    background-color: white;
    border-radius: 15px;
    border: 1px solid #fb93ae;   
    outline: 5px solid white; 
    box-shadow: 0 0 0 8px #fb93ae;
    padding: 50px 10px 30px;
    position: relative;
    margin-top: 80px;
}

.genre-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: linear-gradient(#f884b1, #f76c85);
    width: 90%;
    padding: 10px 0;
    border-radius: 10px 0 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

  
  .crown-image {
    width: 39px;
    height: auto;
    position: relative;
    top: -3px;
  }
  

.genre-content {
    white-space: pre-line;
    padding: 5px;
    text-align: justify;
    margin: 10px 0;
    font-size: clamp(0.8rem, 2.5vw, 1.1rem);
}
.genre-content > span {
    font-size: clamp(17px, 2vw, 1.5rem);
    color: #043e7e;
    font-weight: bold;
    padding-bottom: 10px;
    display: inline-block;
}
.genre-box > a {
    font-size: 12px;
    border-bottom: 1px dotted #fb4875;
    position: relative;
    margin-left: 10px;
}
.genre-box > a[target="_blank"]::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -15px;
    transform: translate(-50%, -50%) rotate(-45deg);
    width: 6px !important;
    height: 6px !important;
    border-bottom: 1.5px solid #ff0165;
    border-right: 1.5px solid #ff0165;
    background: none;
    padding: 0;
}
  

/* campaign info */
.campaign-info {
    background-color: #fef6f8;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding-bottom: 30px;
}
.campaign-info > h3 {
    width: 90%;
}

/* three reason */
.reason-area {
    width: 100%;
    background-color: #fef6f8;
}
.three-reason-container-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 80px;
    margin-top: 80px;
}


.three-reason-row {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.three-reason-row > div {
    width: 90%;
}

.img-wrapper {
    position: relative;
    width: 100%;
}
.three-reason-row .number-point {
    position: absolute;
    transform: translate(-50%, -50%);
    width: clamp(4rem, 8vw, 6rem);
    top: 8%;
    left: 12%;
}

.three-reason-row-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-right: 10%;
}
.three-reason-row-content > h3 {
    font-size: 1.4rem;
    color: #fb4875;
    margin: 10px 0;
}

.three-reason-row-content > p {
  color: #646464;
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  width: 100%;
}

/* video check */
.video-check {
    width: 100%;
    background-color: #fef6f8;
}
.video-check-section {
    width: 100%;
}
.video-check-container {
    background-size: 100%;
    width: 100%;
}
.pink-cva {
    display: none;
}

/* review */
.review-area {
    width: 100%;
    background-image: url("/common/images/renew/lp/back-yellow-check.webp");
    background-size: contain;
    background-repeat: repeat;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.review-area-header {
    width: 100%;
    background-color: #ffe600;
    color: #043e7e;
    font-weight: bold;
    text-align: center;
    position: relative;
    padding: 10px 0;
}
.review-area-header-circle {
    position: absolute;
    top: 20%;
    left: 50%;
    width: 50%;
    height: 100%;
    transform: translate(-50%, -50%);
    background-color: #ffe600;
    border-radius: 50%;
    z-index: 1;
}
.review-area-header-circle > img{
    width: 35%;
    margin-top: 8px;
}
.review-area-header > p {
    position: relative;
    z-index: 2;
    margin-top: 5px;
    font-size: 1rem;
}
.review-area-header > p:nth-child(3) {
    font-size: 2rem;
    margin-top: 5px;
    line-height: 1;
}
.kuchikomi-img {
    width: 60%;
    margin: 30px 0 10px;
}

.arrow-container {
    width: 35%;       
    max-width: 100px;
    height: fit-content;
    margin: 0 auto;
}
  
.arrow-container svg {
    width: 100%;
    aspect-ratio: 2/1;
    display: block;
}
.arrow-container:nth-child(2) {
    margin-bottom: -8px;
}

.school-card-group {
    display: flex;
    width: 90%;
    align-items: center;
    justify-content: space-between;
    margin: 20px auto 50px;
}
.school-card {
    background-image: linear-gradient(to bottom, #fcbece 0%, #fcbece 50%, #fcacc3 50%, #fcacc3 100%);
    width: 32%;
    aspect-ratio: 2.5/1;
    padding: 5px 12px;
    border-radius: 10px;
    border-right: 2.5px solid #fb93ae;
}
.school-card > span {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    color: #fff;
    font-weight: bold;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    position: relative;
}

.school-card > span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0%;
    transform: translate(-50%, -50%) rotate(-45deg);
    width: 6%;
    height: 15%;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
}

.lp-swiper {
    width: 90%;
    margin: 20px auto 50px;
    position: relative;
}
.swiper-wrapper {
    display: flex;
    gap: 10%;
    transition: transform 0.5s ease; 
    will-change: transform;
    padding-bottom: 100px;
}

.swiper-card {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    width: 100%;
    height: fit-content;
    align-items: center;
    border-radius: 10px;
    border: 2px solid #ffe600;
    background-color: #fff;
    padding: 20px;
    position: relative;
    color: #646464;
}
.swiper-card-header {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    height: fit-content;
    margin: 10px 0 30px;
}
.swiper-card-header > img{
    width: 65%;
}
.swiper-card-content {
    font-size: clamp(0.8rem, 2.5vw, 1.2rem);
    text-align: justify;
    padding-bottom: 50px;
}
.swiper-card-footer {
    font-size: 10px;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    position: absolute;
    bottom: 10px;
    left: 20px;
}
.swiper-card-footer > a {
    color: #646464;
    border-bottom: 1px solid #646464;
}
.swiper-card-footer > a::after {
    display: none;
}
.circle-overlay {
    position: absolute;
    top: 0;
    right: -8%;
    transform: translate(-50%, -25%);
    width: 24%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    overflow: hidden;
    z-index: 10;
}
.circle-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.circle-overlay::after { 
    content: ""; 
    position: absolute; 
    inset: 0; 
    border-radius: 50%; 
    pointer-events: none; 
    padding: 0px; 
    background: conic-gradient(from -60deg,#ffe600 -120deg 120deg, transparent 120deg 300deg);
     -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 2px)); 
}


  .lp-swiper-btn-prev,
  .lp-swiper-btn-next {
      position: absolute;
      top: 30%;
      transform: translateY(-50%);
      width: 30px;
      height: 30px;
      background-color: #ffe600;
      text-align: center;
      line-height: 30px;
      font-weight: bold;
      cursor: pointer;
      z-index: 10;
      border-radius: 50%;
      user-select: none;
  }
  .lp-swiper-btn-prev::after, .lp-swiper-btn-next::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    aspect-ratio: 1/1;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
  }
  .lp-swiper-btn-prev {
    left: -4%;
  }
  .lp-swiper-btn-prev::after {
    transform: translate(-50%, -50%) rotate(135deg);
  }
  .lp-swiper-btn-next {
      right: -4%;
  }
.lp-swiper-btn-next::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

#cta {
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    max-width: 500px;
    background-color: #fee8ef;
    z-index: 1000;
}

.permanent-cta {
    animation: fuwafuwa 2s linear infinite;
  scale: 1;
}
.cta-bg-pink {
    background-color: #fbbecd;
    padding-bottom: 50px;
}
.studio-wrapper {
    padding-bottom: 30px;
    gap: 0;
}
/********************************

	ダンススタジオ_はじまり

********************************/
@media screen and (min-width: 768px) {
    .studio-bg::after {
        bottom: -5%;
    }
    .studio-container > p > br {
        display: none;
    }
}
    .studio-tit {
        margin: 0px 0 40px 0;
    }
    .studio-container {
        padding: 0 0 50px 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
    }
    .studio-bg::after {
        clip-path: ellipse(150% 100% at 50% 0%);
        bottom: -10%;
    }
    .studio-container > .yellow-border-box {
        font-size: 30px;
    }
    .swiper-button-prev:after {
        border-width: 6px 9px 6px 0;
        border-color: transparent #b7a35c transparent transparent;
        left: 8px;
    }

    .swiper-button-next:after {
        border-width: 6px 0 6px 9px;
        border-color: transparent transparent transparent #b7a35c;
    }
    .swiper-pagination-bullet-active {
        background: #fff !important;
    }
    .swiper-button-prev, .swiper-button-next {
        width: 30px !important;
        height: 30px !important;
        border-radius: 50%; /* 丸くする */
        background-color: rgba(255, 255, 255, 0.5);
        border: 1px solid #b7a35c;
    }
    .swiper-button-prev:after, .swiper-button-next:after {
        content: '' !important;
        position: absolute;
        width: 0;
        height: 0;
        border-style: solid;
        display: inline-block;
    }
    .swiper-slide {
        width: 90% !important;
    }
    #studio-btn-prev {
        top: 60% !important;
    }
    #studio-btn-next {
        top: 60% !important;
    }
    .swiper-pagination {
        z-index: 1 !important;
    }

    
/********************************

	ダンススタジオ_おわり

********************************/