@charset "UTF-8";

*{
    margin: 0;
    padding: 0;
    font-family: "M PLUS Rounded 1c"; 
    font-weight: 700;
    box-sizing: border-box;
}

body{
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

body::-webkit-scrollbar{
    display: none;
}
.df{
    display: flex;
}
.df_cl{
    display: flex;
    flex-direction: column;
}
.gr{
    display: grid;
}
#opening{
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(
        circle farthest-corner at 32% 106%,
        rgb(255, 225, 125) 0%,
        rgb(255, 205, 105) 10%,
        rgb(250, 145, 55) 28%,
        rgb(235, 65, 65) 42%,
        transparent 82%
      ),
      linear-gradient(135deg, rgb(35, 75, 215) 12%, rgb(195, 60, 190) 58%);
}
.scaling-squares-spinner, .scaling-squares-spinner * {
    box-sizing: border-box;
  }

  .scaling-squares-spinner {
    height: 65px;
    width: 65px;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    animation: scaling-squares-animation 1250ms;
    animation-iteration-count: infinite;
    transform: rotate(0deg);
  }

  .scaling-squares-spinner .square {
    height: calc(65px * 0.25 / 1.3);
    width: calc(65px * 0.25 / 1.3);
    margin-right: auto;
    margin-left: auto;
    position: absolute;
    animation-duration: 1250ms;
    animation-iteration-count: infinite;
  }

  .scaling-squares-spinner .square:nth-child(1) {
    border: calc(65px * 0.04 / 1.3) solid #2cff1d;
    animation-name: scaling-squares-spinner-animation-child-1;
  }

  .scaling-squares-spinner .square:nth-child(2) {
    border: calc(65px * 0.04 / 1.3) solid #fffb1d;
    animation-name: scaling-squares-spinner-animation-child-2;
  }

  .scaling-squares-spinner .square:nth-child(3) {
    border: calc(65px * 0.04 / 1.3) solid rgb(35, 75, 215);
    animation-name: scaling-squares-spinner-animation-child-3;
  }

  .scaling-squares-spinner .square:nth-child(4) {
    border: calc(65px * 0.04 / 1.3) solid rgb(195, 60, 190);
    animation-name: scaling-squares-spinner-animation-child-4;
  }


  @keyframes scaling-squares-animation {

    50% {
      transform: rotate(90deg);
    }

    100% {
      transform: rotate(180deg);
    }
  }

  @keyframes scaling-squares-spinner-animation-child-1 {
    50% {
      transform: translate(150%,150%) scale(2,2);
    }
  }

  @keyframes scaling-squares-spinner-animation-child-2 {
    50% {
      transform: translate(-150%,150%) scale(2,2);
    }
  }

  @keyframes scaling-squares-spinner-animation-child-3 {
    50% {
      transform: translate(-150%,-150%) scale(2,2);
    }
  }

  @keyframes scaling-squares-spinner-animation-child-4 {
    50% {
      transform: translate(150%,-150%) scale(2,2);
    }
  }

.circle{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    display: inline-block;
}
.circle_inside{
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.25s;
}
.menu_text,.company_info{
    position: absolute;
    white-space: nowrap;
    transition: all 0.25s;
    background: radial-gradient(
        circle farthest-corner at 32% 106%,
        rgb(255, 225, 125) 0%,
        rgb(255, 205, 105) 10%,
        rgb(250, 145, 55) 28%,
        rgb(235, 65, 65) 42%,
        transparent 82%
      ),
      linear-gradient(135deg, rgb(35, 75, 215) 12%, rgb(195, 60, 190) 58%);
    border: 2px solid white;
    box-shadow: 1px 1px 4px black;
    padding: 10px 16px;
}
.menu_text{
    transform: translateX(-50%);
    opacity: 0;
}
.menu_text.for_tiktok{
    background: black;
}
.menu_text h1{
    color: white;
    font-size: 32px;
    line-height: 36px;
}
.company_info{
    color: white;
    text-align: center;
}
.company_info h2 a{
    text-decoration: none;
    color: white;
}
.info_2{
    transform: translateY(-130%);
    width: 130px;
    height: 100px;
    border: 2px solid white;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 20px;
}
.info_2 img{
    height: 60px!important;
    width: 60px!important;
}
.info_2:hover{
    width: 150px;
    height: 115px;
}
.circle_1,.circle_2,.circle_3,.circle_4,.circle_5,.circle_6,.circle_7,.circle_8,.circle_9,.circle_10,.circle_11{
    position: absolute;
    z-index: 2;
    box-sizing: border-box;
}
.circle_1,.circle_2,.circle_3,.circle_4,.circle_5,.circle_6,.circle_7,.circle_8,.circle_10,.circle_11{
    cursor: pointer;
}
.circle_2,.circle_3,.circle_4,.circle_5,.circle_6,.circle_7,.circle_8,.circle_9,.circle_10,.circle_11{
    transform: scale(0);
}
.circle_1{
    width: 150px;
    height: 150px;
    top: calc(50% - 75px);
    left: calc(50% - 75px);
    display: flex;
    justify-content: center;
    align-items: center;
}
.circle_title_text{
    position: absolute;
    font-size: 18px;
    white-space: nowrap;
    color: white;
    animation: click 2s ease-in-out infinite;
    text-align: center;
    box-sizing: border-box;
    padding: 5px;
    text-shadow: 2px 2px 3px black;
}
.for_cursive{
    font-style: italic;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 36px;
}
.for_click{
    font-size: 24px;
    bottom: -35%;
}

@keyframes click{
    0%{
        opacity: 1;
    }
    50%{
        opacity: 0.5;
    }
    100%{
        opacity: 1;
    }
}
.circle_2{
    top: 5%;
    left: calc(50% - 50px);
    opacity: 0;
    z-index: 5;
}
.circle_3{
    top: 13%;
    left: 53%;
    opacity: 0;
    z-index: 5;
}
.circle_4{
    top: 23%;
    left: 60%;
    opacity: 0;
    z-index: 5;
}
.circle_5{
    top: 33%;
    left: 67%;
    opacity: 0;
    z-index: 5;
}
.circle_6{
    top: 43%;
    left: 70%;
    opacity: 0;
    z-index: 5;
}
.circle_7{
    bottom: 23%;
    left: 60%;
    opacity: 0;
    z-index: 5;
}
.circle_8{
    bottom: 5%;
    left: calc(50% - 50px);
    opacity: 0;
    z-index: 5;
}
.circle_9{
    top: calc(45% - 10px);
    left: 10%;
    opacity: 0;
}
.circle_10{
    bottom: 33%;
    left: 67%;
    opacity: 0;
    z-index: 5;
}
.circle_11{
    bottom: 13%;
    left: 53%;
    opacity: 0;
    z-index: 5;
}
@media all and (min-width: 900px){
    .circle_3,.circle_11{
        left: 52%;
    }
    .circle_4,.circle_7{
        left: 57%;
    }
    .circle_5,.circle_10{
        left: 60%;
    }
    .circle_6{
        top: 44%;
        left: 62%;
    }
    .circle_9{
        left: 40%;
    }
    .menu_text{
        height: max-content;
    }
    .menu_text h1{
        font-size: 48px;
        line-height: 48px;
        letter-spacing: 1px;
    }
}
.circle_0 img{
    width: 100%;
    height: auto;
    transition: 0.25s;
}
.circle_9 img{
    width: 300%;
    height: auto;
    transition: 0.25s;
}
.circle_1:hover img{
    transform: scale(0.95,0.95);
}
.ci_scale:hover .circle_inside{
    transform: scale(1.1,1.1);
}

#circle_back{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(
        circle farthest-corner at 32% 106%,
        rgb(255, 225, 125) 0%,
        rgb(255, 205, 105) 10%,
        rgb(250, 145, 55) 28%,
        rgb(235, 65, 65) 42%,
        transparent 82%
      ),
      linear-gradient(135deg, rgb(35, 75, 215) 12%, rgb(195, 60, 190) 58%);
    z-index: 1;
    animation: back_ground 10s linear infinite;
}
@keyframes back_ground{
    0%{
        opacity: 1;
        transform: scale(1);
    }
    50%{
        opacity: 0.8; 
        transform: scale(1.3);
    }
    75%{
        opacity: 0.5;
        transform: scale(1.7);
    }
    100%{
        opacity: 1;
        transform: scale(1);
    }
}
.circle_back:before,.circle_back:after{
    position: absolute;
    content: "";
    background: rgb(255, 255, 255, 0.7);
    z-index: 10;

}
.circle_back:before{
    width: 50%;
    height: 100%;
    top: 0;
    right: 0;    
    transform: skew(30deg);
    animation: circle_back 30s linear infinite;
}
.circle_back:after{
    width: 20%;
    height: 100%;
    top: 0;
    left: 0;
    animation: circle_back2 20s linear infinite;
}
@keyframes circle_back{
    0%{
        transform: skew(30deg);
        background: rgba(83, 83, 83, 0.7);
    }
    20%{
        transform: skew(-30deg);
        background: rgba(254, 0, 0, 0.7);
    }
    40%{
        transform: skew(-60deg) translate(0);
        background: rgba(3, 18, 73, 0.7);
    }
    50%{
        transform: translate(-300px,0) scale(0.3,1) skew(-80deg);
        background: rgba(170, 12, 165, 0.7);
    }
    100%{
        transform: skew(30deg) translate(0) scale(1);
        background: rgba(83, 83, 83, 0.7);
    }
}
@keyframes circle_back2{
    0%{
        transform: skew(-30deg);
        background: rgb(255, 255, 255, 0.7);
    }
    20%{
        transform: skew(30deg);
        background: rgba(235, 65, 65, 0.7);
    }
    40%{
        transform: skew(-60deg) translate(0);
        background: rgba(35, 75, 215, 0.7);
    }
    50%{
        transform: translate(300px,0) scale(0.3,1) skew(80deg);
        background: rgba(195, 60, 190, 0.7);
    }
    100%{
        transform: skew(-30deg) translate(0) scale(1);
        background: rgb(255, 255, 255, 0.7);
    }
}

.section_1,.section_2,.section_3,.section_4,.section_5,.section_6,.section_7,.section_8,.section_9,.section_10{
    width: 100%;
    height: 100%;
    min-height: 100vh;
    position: absolute;
    background: radial-gradient(
        circle farthest-corner at 32% 106%,
        rgb(255, 225, 125, 0.8) 0%,
        rgb(255, 205, 105, 0.8) 10%,
        rgb(250, 145, 55, 0.8) 28%,
        rgb(235, 65, 65, 0.8) 42%,
        transparent 82%
      ),
      linear-gradient(135deg, rgb(35, 75, 215, 0.8) 12%, rgb(195, 60, 190, 0.8) 58%);
    z-index: 9;
    transition: 0.5s;
}
.section_container{
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.section_1{
    top: -2000px;
    left: -2000px;
}
.section_2{
    top: -2000px;
    left: 2000px;
    z-index: 10;
}
.section_3{
    top: 0;
    left: 2000px;
    z-index: 10;
}
.section_4{
    top: 0;
    left: -2000px;
}
.section_5,.section_10{
    top: 2000px;
    left: 2000px;
}
.section_6,.section_8{
    top: 2000px;
    left: 500px;
}
.section_7,.section_9{
    top: 2000px;
    left: -2000px;
}
.close{
    width: max-content;
    height: max-content;
    border: black;
    cursor: pointer;
    position: absolute;
    top: 5px;
    right: 15px;
    font-size: 56px;
    line-height: 24px;
    font-weight: lighter;
    color: white;
    z-index: 10;
}
.return{
    opacity: 0;
}
.show{
    animation: show 1.2s linear forwards;
}
.show_2{
    animation: show_2 0.3s linear forwards;
}
@keyframes show{
    0%{
        opacity: 0;
        transform: scale(0);
    }
    100%{
        opacity: 1;
        transform: scale(1);
    }
}
@keyframes show_2{
    0%{
        opacity: 1;
        transform: scaleY(0);
    }
    100%{
        opacity: 1;
        transform: scaleY(1);
    }
}
.animate__animated{
    animation-iteration-count: infinite !important;
}
.section_box{
    width: 90%;
    height: 85%;
    min-height: 85%;
    border: 4px double white;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    overflow-x: hidden;
    overflow-y: scroll;
    position: relative;
    padding-bottom: 50px;
    transform-origin: bottom;
    background: radial-gradient(
        circle farthest-corner at 32% 106%,
        rgb(255, 225, 125, 0.8) 0%,
        rgb(255, 205, 105, 0.8) 10%,
        rgb(250, 145, 55, 0.8) 28%,
        rgb(235, 65, 65, 0.8) 42%,
        transparent 82%
      ),
      linear-gradient(135deg, rgb(35, 75, 215, 0.8) 12%, rgb(195, 60, 190, 0.8) 58%);
}
.section_box::-webkit-scrollbar{
    display: none;
}
.section_divider{
    width: 100%;
    height: 10px;
    margin: 10px 0;
    padding: 2px 0;
    background: white;
}
.sb_title{
    width: max-content;
    height: max-content;
    margin: 10px;
    padding: 3px;
    color: white;
    border-bottom: 1px solid white;
    text-align: center;
}
.sb_text{
    width: 90%;
    height: max-content;
    text-align: justify;
    margin: 10px 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.get_white{
    color: white;
}
.get_white.for_plan_under{
    text-align: center;
}
.get_white span{
    font-size: 24px;
    color: white !important;
    text-shadow: 1px 1px 2px black;
}
.sb_text p,.sbi_prof_box p{
    margin: 10px 0;
    letter-spacing: 1px;
}

.sb_text img{
    width: 100%;
    height: auto;
}
.plan{
    cursor: pointer;
    transition: 0.25s;
    position: relative;
    color: rgb(35, 75, 215);
}
.plan_price{
    font-size: 24px;
}
@media all and (min-width:900px){
    .plan::before{
        content: "";
        position: absolute;
        width: 0;
        height: 0;
        background: rgb(110, 110, 110);
        bottom: 0;
        left: 0;
        opacity: 0;
        transition: 0.25s;
    }
    .plan:hover::before{
        width: 100%;
        height: 2px;
        opacity: 1;
    }
    .plan{
        color: black;
    }
    .plan:hover{
        color: rgb(35, 75, 215);
    }
}
.sb_text_content{
    width: 100%;
    height: 100%;
    background:rgb(0, 0, 0, 0.8);
    position: absolute;
    top: 0;
    left: 0;
    transform: scaleY(0);
    opacity: 0;
    transform-origin: top;
    display: flex;
    justify-content: center;
    align-items: center;
}
.fa-circle-question,.fa-instagram{
    animation: finger 1s ease-in-out infinite;
}
.fa-instagram{
    font-size: 24px;
    color: rgb(177, 0, 200);
}
@keyframes finger{
    0%{
        transform: rotate(10deg);
    }
    50%{
        transform: rotate(-10deg);
    }
    100%{
        transform: rotate(10deg);
    }
}
.svtc_close{
    position: absolute;
    top: 5px;
    right: 5px;
    width: max-content;
    height: max-content;
    padding: 8px 10px;
    font-size: 18px;
    line-height: 18px;
    color: rgb(0, 0, 0);
    cursor: pointer;
    background: rgb(255, 255, 255);
}
.sbt_text{
    box-sizing: border-box;
    width: 90%;
    height: 90%;
    border: 1px solid white;
    overflow-y: scroll;
    padding: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
}
.sbt_text::-webkit-scrollbar{
    display: none;
}
.sbt_text p{
    width: 100%;
    padding: 5px;
    box-sizing: border-box;
}
.sbt_text p:first-of-type{
    text-decoration: underline;
}
.sbt_text p span{
    color: white!important;
    font-size: 18px;
}
.sb_image_box,.sb_question_box{
    width: 90%;
    height: max-content;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    margin: 10px;
}
.sb_image,.sb_question{
    flex: 1;
    flex-basis: 300px;
    max-width: 600px;
    height: max-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: black;
    margin: 5px;
    position: relative;
    background: white;
}
.sb_image.for_third{
    background: transparent;
}
.sb_third_inside{
    width: 100%;
    height: max-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    margin-bottom: 10px;
    padding: 0 5px;
}

.contract_title{
    font-size: 24px;
    position: relative;
}

.sb_question{
    max-width: 800px;
}
.sb_image h3{
    margin: 5px 0;
    padding: 5px 10px;
    text-align: center;
}
.sb_image h3 span{
    font-size: 32px;
    margin: 0 3px;
    color: rgb(177, 0, 200);
}
.perform_text{
    color: rgb(177, 0, 200);
    font-size: 28px;
    text-align: center;
}
.perform_text_2{
    color: rgb(35, 75, 215);
    font-size: 28px;
    text-align: center;
}
.perform_text_3{
    color: rgb(235, 65, 65);
    font-size: 28px;
    text-align: center;
}
.perform_text,.perform_text_2,.perform_text_3{
    border-bottom: 1px solid black;
}
.sbi_line{
    width: 50%;
    height: 5px;
    background: radial-gradient(
        circle farthest-corner at 32% 106%,
        rgb(255, 225, 125, 0.5) 0%,
        rgb(255, 205, 105, 0.5) 10%,
        rgb(250, 145, 55, 0.5) 28%,
        rgb(235, 65, 65, 0.5) 42%,
        transparent 82%
      ),
      linear-gradient(135deg, rgb(35, 75, 215, 0.5) 12%, rgb(195, 60, 190, 0.5) 58%);
}
.sbi_prof_box,.sbi_req_box{
    width: 100%;
    height: max-content;
    border: 2px solid white;
    box-sizing: border-box;
}
.sbi_prof_box p{
    padding: 3px 5px;
    width: max-content;
    position: relative;
}
.sbi_prof_box p::before,.sbi_prof_box p::after,.contract_title::before{
    content: "";
    position: absolute;
    background: radial-gradient(
        circle farthest-corner at 32% 106%,
        rgb(255, 225, 125, 0.5) 0%,
        rgb(255, 205, 105, 0.5) 10%,
        rgb(250, 145, 55, 0.5) 28%,
        rgb(235, 65, 65, 0.5) 42%,
        transparent 82%
      ),
      linear-gradient(135deg, rgb(35, 75, 215, 0.5) 12%, rgb(195, 60, 190, 0.5) 58%);
}
.sbi_prof_box p::before{
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
}
.sbi_prof_box p::after{
    width: 3px;
    height: 5px;
    bottom: 0;
    right: 0;
}
.sbi_prof_box h3{
    background: radial-gradient(
        circle farthest-corner at 32% 106%,
        rgb(255, 225, 125, 0.8) 0%,
        rgb(255, 205, 105, 0.8) 10%,
        rgb(250, 145, 55, 0.8) 28%,
        rgb(235, 65, 65, 0.8) 42%,
        transparent 82%
      ),
      linear-gradient(135deg, rgb(35, 75, 215, 0.8) 12%, rgb(195, 60, 190, 0.8) 58%);
    color: white;
    text-shadow: 1px 1px 2px black;
}
.sbi_prof_box h3 a{
    text-decoration: none;
    color: white;
}
.sbi_req_box{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.req_title{
    padding: 2px 5px;
    width: max-content;
    font-size: 16px;
    position: relative;
    border-bottom: 1px solid rgb(195, 60, 190);
}
.req_title::after,.req_title::before{
    content: "";
    position: absolute;
    width: 2px;
    height: 5px;
    bottom: 0;
    background: rgb(195, 60, 190);
}
.req_title::after{
    left: 0;
}
.req_title::before{
    right: 0;
}
.sbi_req_box h3{
    font-size: 18px;
    width: 100%;
    box-sizing: border-box;
    color: white;
    background: radial-gradient(
        circle farthest-corner at 32% 106%,
        rgb(255, 225, 125) 0%,
        rgb(255, 205, 105) 10%,
        rgb(250, 145, 55) 28%,
        rgb(235, 65, 65) 42%,
        transparent 82%
      ),
      linear-gradient(135deg, rgb(35, 75, 215) 12%, rgb(195, 60, 190) 58%);
    text-shadow: 1px 1px 2px black;
}

.sbi_req_box h3 span{
    font-size: 12px;
    color: white;
    text-align: justify;
}
@media all and (min-width:900px){
    .sbi_req_box h3{
        font-size: 24px;
    }
    .sbi_req_box h3 span{
        font-size: 18px;
    }
}
.pr_box{
    width: 100%;
    height: max-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: radial-gradient(
        circle farthest-corner at 32% 106%,
        rgb(255, 225, 125) 0%,
        rgb(255, 205, 105) 10%,
        rgb(250, 145, 55) 28%,
        rgb(235, 65, 65) 42%,
        transparent 82%
      ),
      linear-gradient(135deg, rgb(35, 75, 215) 12%, rgb(195, 60, 190) 58%);
    box-sizing: border-box;
    padding: 5px;
    margin: 5px;
    color: white;
}
.pr_title{
    font-size: 24px;
    padding: 5px;
    margin: 10px 5px 0px;
    border: 1px solid white;
    text-shadow: 1px 1px 2px black;
}
.pr_text{
    text-align: center;
    padding: 5px;
    position: relative;
}

.choose_title{
    position: relative;
}
.point_title{
    padding: 0 5px;
    position: relative;
    font-weight: bold;
    border-top: 2px solid rgb(195, 60, 190);
    border-bottom: 2px dotted rgb(195, 60, 190);
    border-left: 1px solid rgb(195, 60, 190);
    border-right: 1px solid rgb(195, 60, 190);
}
.point_title span{
    font-size: 24px !important;
    line-height: 24px;
    color: rgb(35, 75, 215)  !important;
    background: none !important;
}
.point_divide{
    width: 100%;
    height: 1px;
    background: black;
}
.choose_title::before{
    content: "";
    position: absolute;
    background: radial-gradient(
        circle farthest-corner at 32% 106%,
        rgb(255, 225, 125, 0.5) 0%,
        rgb(255, 205, 105, 0.5) 10%,
        rgb(250, 145, 55, 0.5) 28%,
        rgb(235, 65, 65, 0.5) 42%,
        transparent 82%
      ),
      linear-gradient(135deg, rgb(35, 75, 215, 0.5) 12%, rgb(195, 60, 190, 0.5) 58%);
}
.choose_title::before,.contract_title::before{
    width: 100%;
    height: 5px;
    bottom: 0;
    left: 0;
}
.for_choose{
    background: radial-gradient(
        circle farthest-corner at 32% 106%,
        rgb(255, 225, 125) 0%,
        rgb(255, 205, 105) 10%,
        rgb(250, 145, 55) 28%,
        rgb(235, 65, 65) 42%,
        transparent 82%
      ),
      linear-gradient(135deg, rgb(35, 75, 215) 12%, rgb(195, 60, 190) 58%);
    color: white;
    box-shadow: 1px 1px 3px rgb(195, 60, 190);
    text-shadow: 1px 1px 2px black;
}

.for_choose1{
    font-size: 24px;
}
.for_choose2{
    position: relative;
    line-height: 36px;
    overflow: hidden;
}
.for_choose2::before,.for_choose2::after{
    position: absolute;
    content: "";
    width: 20px;
    height: 100%;
    background: rgb(255, 0, 0);
    top: 0;
    left: calc(50% - 10px);
    animation: cross 2s ease-in-out infinite;
}
.for_choose2::before{
    transform: skew(60deg);
}
.for_choose2::after{
    transform: skew(-60deg);
}
@keyframes cross{
    0%{
        opacity: 0;
    }
    50%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}

.explain_text{
    width: 90%;
    height: max-content;
    padding: 10px;
    box-sizing: border-box;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.explain_text p{
    margin: 5px;
    text-align: justify;
}
.explain_text p:last-of-type{
    font-size: 12px;
}

.for_circle_4{
    padding: 5px;
    margin: 5px 0;
    cursor: pointer;
    color: blue;
    border: 1px solid black;
    align-self: center;
}
.for_compare,.for_roadmap{
    width: 90%;
    height: max-content;
    display: flex;
    justify-content: center;
    padding: 5px;
    box-sizing: border-box;
    flex-wrap: wrap;
}
.for_roadmap{
    margin: 5px 0;
    background: linear-gradient(to right, #d7d2cc, #304352); 
}

.compare_box,.roadmap_box{
    flex: 1;
    height: max-content;
    min-height: 40px;
    margin: 5px;
    padding: 3px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.compare_box{
    flex-basis: 200px;
}
.compare_box:first-of-type{
    border: 1px solid rgb(0, 0, 0);
}
.compare_box:nth-of-type(2){
    border: 3px solid rgb(0, 0, 0);
    background: radial-gradient(
        circle farthest-corner at 32% 106%,
        rgb(255, 225, 125) 0%,
        rgb(255, 205, 105) 10%,
        rgb(250, 145, 55) 28%,
        rgb(235, 65, 65) 42%,
        transparent 82%
      ),
      linear-gradient(135deg, rgb(35, 75, 215) 12%, rgb(195, 60, 190) 58%);
    color: white;
}
.compare_box p:first-of-type{
    border-bottom: 1px solid white;
}
.compare_box h3 span{
    color: white;
    text-shadow: 1px 1px 2px black;
}
.thumbs_up,.thumbs_up_2{
    position: absolute;
    animation: click 1s ease-in-out infinite;
}
.thumbs_up{
    font-size: 48px;
    top: -10px;
    left: -10px;
    transform: rotate(-20deg);
}
.thumbs_up_2{
    font-size: 64px;
    display: inline-block;
    transform: scaleX(-1) rotate(-20deg);
    bottom: -25px;
    right: -15px;
}
.roadmap_box{
    flex-basis: 50px;
    max-width: 150px;
    border: 1px solid white;
    background: rgb(255, 255, 255);
}

.roadmap_box img{
    width: 100%;
    height: auto;
}
.question{
    width: 90%;
    height: max-content;
    margin: 5px;
    border: 2px dotted black ;
}
.question h3,.question p{
    letter-spacing: 2px;
    color: black;
    padding: 3px;
}
.question p{
    margin: 5px 0;
}
.question h3{
    font-size: 18px;
    margin: 5px 10px;
    text-align: justify;
}
.question .fa-quora,.question .fa-a{
    font-size: 32px;
}
.question .fa-quora{
    color: rgb(0, 0, 120);
    margin-right: 10px;
}
.question .fa-a{
    color: rgb(180, 0, 0);
    margin-right: 10px;
}
.question h3 span,.sb_text p span,.plan_price{
    color: rgb(177, 0, 200);
    position: relative;
    text-align: justify;
    background: linear-gradient(transparent 60%,rgb(206, 215, 35, 0.4) 0%);
}
.sb_text p .for_price_main{
    font-size: 24px;
    font-weight: bold;
}
.sb_text p.price_alert{
    font-size: 12px;
}
.sb_third_alert{
    margin-top: 10px;
    margin-bottom: -10px;
    padding: 5px 10px;
    text-align: justify;
    font-size: 10px;
}
.sb_third_divider{
    width: 50%;
    height: 2px;
    background: radial-gradient(
        circle farthest-corner at 32% 106%,
        rgb(255, 225, 125) 0%,
        rgb(255, 205, 105) 10%,
        rgb(250, 145, 55) 28%,
        rgb(235, 65, 65) 42%,
        transparent 82%
      ),
      linear-gradient(135deg, rgb(35, 75, 215) 12%, rgb(195, 60, 190) 58%);
    margin: 10px 0;
}
.for_circle_3{
    font-size: 24px!important;
    color: rgb(0, 0, 255)!important;
    cursor: pointer;
    transition: 0.25s;
}
.for_circle_3:hover{
    text-decoration: underline;
}
.contact_title,.contact_text{
    width: 100%;
    height: max-content;
    padding: 5px;
    margin: 5px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}
.contact_icon{
    font-size: 32px;
    color: rgb(177, 0, 200);
}
.ct_text{
    color: black;
    border-bottom: 2px solid rgb(80, 80, 80, 0.7);
}
.contact_text{
    justify-content: center;
    flex-direction: column;
    margin-bottom: 10px;
}
.con_text{
    color: blue;
    font-size: 20px;
    margin: 5px;
}
.con_text a{
    color: blue;
}
@media all and (min-width:900px){
    .con_text{
        font-size: 32px;
    }
}

.video_area{
    width: 95%;
    height: max-content;
    min-height: 100px;
    margin: 5px 0;
    position: relative;
    box-sizing: border-box;
}

.for_daikou{
    width: 100%;
    height: max-content;
    display: flex;
    justify-content: center;
    align-items: center;
}
.for_daikou img{
    width: 100%;
    height: auto;
}
.daikou_title{
    color: rgb(177, 0, 200);
    font-size: 18px;
}
.daikou_text{
    text-align: justify;
    margin: 10px;
    padding: 5px;
}
.daikou_text span{
    color: rgb(177, 0, 200);
    font-size: 20px;
    background: linear-gradient(transparent 60%,rgb(206, 215, 35, 0.4) 0%);
}
.daikou_attention{
    padding: 10px;
    text-align: center;
    font-size: 24px;
    position: relative;
    background: radial-gradient(
        circle farthest-corner at 32% 106%,
        rgb(255, 225, 125) 0%,
        rgb(255, 205, 105) 10%,
        rgb(250, 145, 55) 28%,
        rgb(235, 65, 65) 42%,
        transparent 82%
      ),
      linear-gradient(135deg, rgb(35, 75, 215) 12%, rgb(195, 60, 190) 58%);
    color: white;
}
.for_example{
    width: 95%;
    height: max-content;
    border: 1px solid black;
    display: flex;
    flex-direction: column;
}
.example_title{
    padding: 5px;
    width: max-content;
    border-right: 1px solid black;
    border-bottom: 1px solid black;
}
.daikou_prise{
    font-size: 12px;
}
.daikou_prise,.prise_number{
    width: max-content;
    align-self: center;
}
.daikou_prise span{
    font-size: 20px;
    margin: 5px;
    color: rgb(235, 65, 65);
}
.prise_number{
    font-size: 32px;
    margin: 10px;
    padding: 5px 10px;
    background: radial-gradient(
        circle farthest-corner at 32% 106%,
        rgb(255, 225, 125) 0%,
        rgb(255, 205, 105) 10%,
        rgb(250, 145, 55) 28%,
        rgb(235, 65, 65) 42%,
        transparent 82%
      ),
      linear-gradient(135deg, rgb(35, 75, 215) 12%, rgb(195, 60, 190) 58%);
    color: white;
    position: relative;
    text-shadow: 1px 1px 2px black;
}
.kirakira{
    position: absolute;
    height: max-content;
    animation: click 1s ease-in-out infinite;
}
.kk_1{
    width: 40px;
    top: -5px;
    left: -20px;
}
.kk_2{
    width: 50px;
    bottom: -15px;
    right: -25px;
}
.kirakira img{
    width: 100%;
    height: auto;
}
.gallery{
    width: 100%;
    height: max-content;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 10px;
    box-sizing: border-box;
}
.gallery-item{
    flex: 1;
    flex-basis: 50px;
    height: max-content;
    list-style: none;
}
.gallery-item img{
    width: 100%;
    height: auto;
}

#slider,#slider2,#slider3{
    width: 100%;
    margin:0 auto;
  }
  .slide-item{
      background: white;
      position: relative;
  }
  .slide-item img{
      width: 100%;
  }
  #thumbnail-list,#thumbnail-list2,#thumbnail-list3{
    width: 100;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap:wrap;
  }
  .thumbnail-item,.thumbnail-item2,.thumbnail-item3{
    flex: 0 1 20%;
    margin: 10px 5px;
    box-sizing: border-box;
    position:relative;
    list-style: none;
    background: white;
    border-radius: 10px;
    cursor: pointer;
  }
  .thumbnail-item img,.thumbnail-item2 img,.thumbnail-item3 img{
      width: 100%;
      margin: 0 auto;
      border-radius: 10px;
    } 
  .slider_container {
    max-width: 500px;
    width:90%;
    height: max-content;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .slick-prev, 
  .slick-next {
      position: absolute;
      z-index: 3;
      top: 50%;
      cursor: pointer;
      outline: none;
      border-top: 2px solid rgb(0, 0, 0);
      border-right: 2px solid rgb(0, 0, 0);
      height: 25px;
      width: 25px;
  }

  .slick-prev {
      left:2.5%;
      transform: rotate(-135deg);
  }

  .slick-next {
      right:2.5%;
      transform: rotate(45deg);
  }
  .thumbnail-item:after,.thumbnail-item2:after,.thumbnail-item3:after {
    content: '';
    background-color: rgba(0, 0, 0, 0.2);
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    transition: .3s opacity linear;
    }
    .thumbnail-item.thumbnail-current:after,.thumbnail-item2.thumbnail-current:after,.thumbnail-item3.thumbnail-current:after {
    opacity: 0;
    }
.video_container{
    width: 100%;
    max-width: 360px;
    height: max-content;
    min-height: 200px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: 10px;
}
#video{
    width: 100%;
    height: auto;
}

.section_box.sb_4{
    background: linear-gradient(to bottom right, rgb(1,242,234),rgb(0, 0, 0) 10%,rgb(0, 0, 0) 90%,rgb(255,0,79));
}
.option_box{
    width: 100%;
    height: max-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
.option_row{
    width: 100%;
    height: max-content;
    display: flex;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap;
}
p.for_option{
    text-align: center;
}
p.for_option.for_strong{
    font-size: 16px;
    color: rgba(170, 12, 165);
    border: 1px solid rgb(170, 12, 165);
    padding: 5px 10px;
}
p.for_option.for_light{
    font-size: 14px;
    color: rgba(170, 12, 165);
    border: 1px solid rgb(0, 0, 0);
    padding: 5px 10px;
}
p.return_title{
    padding: 5px 10px;
    border: 1px solid black;
    color: white;
}
p.return_title.title_1{
    background: radial-gradient(
        circle farthest-corner at 32% 106%,
        rgb(255, 225, 125) 0%,
        rgb(255, 205, 105) 10%,
        rgb(250, 145, 55) 28%,
        rgb(235, 65, 65) 42%,
        transparent 82%
      ),
      linear-gradient(135deg, rgb(35, 75, 215) 12%, rgb(195, 60, 190) 58%);
}
p.return_title.title_2{
    background: linear-gradient(to bottom right, rgb(1,242,234),rgb(0, 0, 0) 15%,rgb(0, 0, 0) 85%,rgb(255,0,79));
}


.plan_container{
    width: calc(100% - 50px);
    padding: 10px;
    gap: 10px;
    margin: 10px 0;
}
.plan_content_box{
    width: 100%;
    overflow: hidden;
}
.plan_container.container_1{
    grid-template-columns: repeat(3, 1fr);
}
.plan_container.container_2{
    grid-template-columns: repeat(2, 1fr);
}
.plan_content_title_box{
    width: 100%;
    gap: 5px;
    align-items: center;
    position: relative;
    border-radius: 100vh 100vh 0 0;
    padding: 40px 10px;
    overflow: hidden;
    border: 2px solid white;
}
.plan_title_back{
    position: absolute;
    height: 150%;
    aspect-ratio: 1;
    top: 5px;
    opacity: 0.25;
}
.plan_title_back.back_1{
    background-image: url(/img/insta_icon.png);
    background-size: contain;
    background-repeat: no-repeat;
}
.plan_title_back.back_2{
    background-image: url(/img/tiktok.webp);
    background-size: contain;
    background-repeat: no-repeat;
}
.content_plan_title{
    font-size: 36px;
    letter-spacing: 2px;
    font-weight: bold;
    color: white;
    z-index: 1;
}
.content_plan_title::first-letter{
    font-size: 20px;
}
.plan_content_title_box.box_1{
    background: rgb(110, 110, 110);
}
.plan_content_title_box.box_2{
    background: rgb(0, 0, 120);
}
.plan_content_title_box.box_3{
    background: rgb(180, 0, 0);
}
.content_plan_sub{
    font-size: 16px;
    color: white;
    z-index: 1;
}
.plan_content_price_box{
    width: 100%;
    padding: 20px 10px;
    gap: 5px;
    justify-content: center;
    align-items: center;
    background: white;
}
.plan_content_price{
    font-size: 48px;
    letter-spacing: 1px;
    font-weight: bold;
    color: transparent;
    background: radial-gradient(
        circle farthest-corner at 32% 106%,
        rgb(255, 225, 125) 0%,
        rgb(255, 205, 105) 10%,
        rgb(250, 145, 55) 28%,
        rgb(235, 65, 65) 42%,
        transparent 82%
      ),
      linear-gradient(135deg, rgb(35, 75, 215) 12%, rgb(195, 60, 190) 58%);
    background-clip: text;
    -webkit-background-clip: text;
}
.plan_price_sub{
    font-size: 16px; 
}
.plan_price_sub.sub_1{
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}
.plan_price_sub.sub_2{
    line-height: 1.1;
}
.plan_price_sub.sub_2 .for_small{
    font-size: 12px;
}
.plan_content_box.box_2{
    align-items: flex-start;
    gap: 10px;
    padding: 20px;
    background: white;
    height: max-content;
}
.plan_content_sub_title{
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: bold;
    color: rgb(195, 60, 190);
}
.plan_content_row{
    width: 100%;
    gap: 10px;
    align-items: flex-start;
}
.plan_content_row.row_2{
    align-items: center;
}
.plan_row_box{
    flex: 1;
    padding: 10px;
    align-items: flex-start;
}
.plan_row_box.box_1{
    max-width: 200px;
    background: rgb(177, 0, 200, 0.1);
    justify-content: center;
}
.plan_row_box.box_2{
    background: rgb(128, 128, 128, 0.1);
}
.plan_row_box.box_3{
    background: rgb(180, 0, 0, 0.1);
    justify-content: center;
}
.plan_row_text{
    font-size: 14px;
    text-align: justify;
}
.plan_row_text .for_strong{
    font-size: 16px;
    color: rgb(180, 0, 0);
}
.option_container{
    width: 100%;
    height: max-content;
    overflow-x: scroll;
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    margin-bottom: 10px;
}
.option_table{
    border-collapse: collapse;
}
.option_table tr{
    border: 1px solid gray;
}
.option_table th, .option_table td{
    text-align: center;
    width: 20%;
    min-width: 150px;
    padding: 10px;
    height: 60px;
    border: 1px solid rgb(170, 12, 165);
}
.option_table th{
    background: rgb(128, 128, 128, 0.1);
}
.option_table thead th{
    color: rgb(180, 0, 0);
}
.option_table th.for_suggest{
    position: relative;
}
.option_table th.for_suggest::before{
    content: "おススメ!!";
    position: absolute;
    top: -10px;
    right: -20px;
    font-size: 12px;
    background: rgb(0, 0, 255);
    color: white;
    padding: 2px 3px;
    transform: rotate(10deg);
}
.option_table td .for_small{
    font-size: 12px;
}
.option_table td.for_total{
    font-size: 18px;
    color: rgb(177, 0, 200);
}
.option_table td.for_suggest,.option_table th.for_suggest{
    border-left: 3px solid rgb(0, 0, 255);
    border-right: 3px solid rgb(0, 0, 255);
}
.option_table th.for_suggest{
    border-top: 3px solid rgb(0, 0, 255);
}
.option_table td.for_suggest.for_total{
    border-bottom: 3px solid rgb(0, 0, 255);
}
.table_alert,.plan_row_divider{
    font-size: 12px;
    color: rgb(180, 0, 0);
}

@media all and (max-width:1200px){
    .plan_container.container_2{
        grid-template-columns: 1fr;
    }
    .plan_content_price{
        font-size: 42px;
    }
}
@media all and (max-width:900px){
    .plan_content_title_box{
        padding: 20px 10px;
        border-radius: 30px 30px 0 0;
    }
    .content_plan_title{
        font-size: 24px;
    }
    .content_plan_title::first-letter,.content_plan_sub{
        font-size: 14px;
    }
    .plan_content_price_box{
        padding: 10px;
    }
    .plan_content_price{
        font-size: 32px;
    }
    .plan_price_sub{
        font-size: 12px; 
    }
    .plan_price_sub.sub_2 .for_small{
        font-size: 10px;
    }
}
@media all and (max-width:500px){
    .plan_container{
        width: calc(100% - 5px);
    }
    .plan_container.container_1{
        grid-template-columns: 1fr;
    }
    .plan_content_price_box{
        border-radius: 0 0 30px 30px;
    }
    .plan_content_row.row_1{
        flex-direction: column;
        gap: 2px;
    }
    .plan_content_box.box_2{
        padding: 10px;
    }
    .plan_content_row.row_2{
        gap: 0;
    }
    .plan_row_divider{
        display: none;
    }
    .plan_row_text .for_strong{
        font-size: 14px;
    }
}
