.font_letter{
    font-family: "vdl-penletter", sans-serif;
    font-weight: 500;
    font-style: normal; 
}
.font_letter_2{
    font-family: "mitimasu", sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 2;
}
.section_1_image_container{
    background-image: url(/img/training_room.webp);
    background-position: center;
    background-size: cover;
}
.section_1_image_container::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: -1;
}
.section.section_2{
    height: max-content;
    min-height: 100vh;
}
.section_container{
    width: 100%;
    height: max-content;
    padding: 5px;
    position: relative;
}
.section_container.section_2_container{
    justify-content: flex-start;
}


.course_title_container{
    width: 100%;
    height: max-content;
    justify-content: center;
    margin-bottom: -1px;
}

.flow_content_container{
    width: 100%;
    max-width: 1200px;
    height: max-content;
    position: relative;
    padding: 5px;
    border: 2px solid rgb(0, 0, 0);
    box-shadow: -2px -2px 2px white, 2px 2px 4px black, inset 1px 1px 3px black, inset -1px -1px 3px white;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 2px;
}
.flow_content_row{
    flex: 1;
    flex-basis: 400px;
    position: relative;
    align-items: stretch;
    border: 2px solid rgba(0, 0, 0, 0.5);
    background: rgb(212, 92, 22, 0.8);
}
.flow_content_number{
    width: 75px;
    min-width: 75px;
    justify-content: center;
    align-items: flex-start;
    position: relative;
}
.flow_number{
    width: 100%;
    height: max-content;
    text-align: center;
    font-size: 32px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.5);
    color: rgb(38, 18, 0, 0.7);
    background: white;
}
.flow_number::first-letter{
    color: rgb(212, 92, 22, 0.7);
}
.flow_content_box{
    width: 100%;
    flex-wrap: wrap;
    align-items: center;
    border-left: 2px solid rgba(0, 0, 0, 0.5);
    background: white;
}
.flow_content_box.box_r{
    flex-wrap: wrap-reverse;
}
.flow_content_image,.flow_text_box{
    flex: 1;
    flex-basis: 175px;
    height: 100%;
    padding: 5px;
    align-items: center;
    background: rgba(255, 255, 255, 0.5);
}

.flow_content_image img{
    width: 100%;
    height: auto;
    border: 2px solid white;
}
.team_flow_image_box{
    position: relative;
    width: 100%;
    max-width: 240px;
    height: max-content;
    overflow: hidden;
    align-items: stretch;
    justify-self: center;
    border: 2px solid white;
}
.team_flow_image{
    flex: 1;
    justify-content: center;
    overflow: hidden;
    transform: skew(-10deg);
    background: white;
}
.team_flow_image img{
    height: 150px;
    width: auto;
    transform: skew(10deg);
    border: none;
}

.flow_title{
    font-size: 20px;
    font-weight: bold;
    padding: 5px 10px;
    color: rgb(212, 92, 22);
    text-shadow: 1px 1px white;
}
.flow_text{
    font-size: 14px;
    text-align: justify;
    padding: 3px 10px;
}

.flow_scroll_arrow{
    width: 30px;
    height: 70px;
    background: rgb(0, 0, 0);
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 2;
    clip-path: polygon(0 0, 25% 0, 25% 60%, 70% 60%, 0 100%);
    animation: flow_arrow 0.5s ease-in infinite alternate;
}
@keyframes flow_arrow{
    0%{
        transform: translateY(-20px);
    }
    100%{
        transform: translateY(0);
    }
}
@media all and (min-width:548px){
    .flow_scroll_arrow{
        display: none;
    }
}

.course_explain_text_box{
    width: 100%;
    max-width: 1000px;
    height: max-content;
    align-items: center;
    position: relative;
    margin-bottom: 30px;
}

.explain_text_box{
    width: 100%;
    height: max-content;
    padding: 5px;
    margin: 20px 0;
    align-items: center;
}
.explain_text_column{
    width: 100%;
    height: max-content;
    margin: 2px;
    padding: 5px;
    align-items: flex-start;
    position: relative;
    gap: 10px;
}

.benefit_title_box{
    width: 100%;
    height: max-content;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 20px 0;
    background: rgb(212, 92, 22, 0.8);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 15px;
}
.benefit_title_box.box_1{
    align-items: flex-end;
}
.benefit_image_box{
    width: 250px;
    align-self: stretch;
    align-items: flex-end;
}
.benefit_image_box.box_1{
    padding: 10px;
}
.benefit_image_box img{
    width: 100%;
    height: auto;
    border-bottom: 3px solid rgb(212, 92, 22);
}
.benefit_title{
    padding: 0 5px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    text-align: center;
    text-decoration: underline;
}

.benefit_text.text_1,.benefit_text.text_2{
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    color: rgb(255, 255, 75);
    line-height: 1;
}
.benefit_text.text_1 span{
    font-size: 48px;
    color: rgb(255, 255, 75);
}
.benefit_text.text_2 span{
    font-size: 32px;
    color: rgb(255, 255, 75);
}



.course_subtitle_container{
    width: 100%;
    max-width: 1200px;
    height: max-content;
    padding: 15px;
    justify-content: center;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}
.course_subtitle_container.for_under{
    flex: 1;
    flex-basis: 350px;
}
.course_subtitle_box{
    position: relative;
    background: white;
    padding: 25px 15px;
    border-radius: 15px;
    border: 3px dashed rgb(212, 92, 22);
}

.course_subtitle{
    text-align: center;
    font-size: 18px;
    font-style: italic;
    font-weight: bold;
}
.course_subtitle_main{
    font-size: 32px;
    font-weight: bold;
    color: rgb(212, 92, 22);
    margin-top: 10px;
    text-align: center;
}
.course_subtitle_point{
    position: absolute;
    top: -14px;
    left: -14px;
    border: 2px solid rgb(212, 92, 22);
    background: white;
    padding: 5px 10px;
    font-style: italic;
}
.course_subtitle_model_box{
    flex-basis: 200px;
    width: 70%;
    max-width: 300px;
    height: max-content;
    align-items: center;
    justify-content: center;
}
.course_subtitle_model_box img{
    width: 100%;
    height: auto;
    border-bottom: 3px solid rgb(212, 92, 22);
}
.course_model_2{
    display: none;
}


.course_content_container{
    width: 100%;
    max-width: 1200px;
    height: max-content;
    padding: 5px;
}
.course_content_row{
    width: 100%;
    height: max-content;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}
.course_content_row.for_under{
    align-items: flex-end;
}
.course_content_box{
    flex: 1;
    flex-basis: 350px;
    margin: 5px;
    position: relative;
}
.course_content_box.box_2{
    height: max-content;
    background: rgb(247, 159, 108);
}
.course_content_box.box_3{
    align-items: center;
}
.course_content_box.box_3.for_price{
    background: rgb(212, 92, 22);
}
.course_content_box.box_4{
    padding-top: 20px;
    align-items: center;
    background: rgb(240, 240, 240);
}
.course_image{
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: 1px solid white;
    box-shadow: -2px -2px 2px white, 2px 2px 4px black, inset 1px 1px 3px black, inset -1px -1px 3px white;
}
.course_image.image_1{
    background-image: url(/img/course_1.webp);
    background-size: cover;
    background-position: top;
}
.course_image.image_1_2{
    background-image: url(/img/kubo_training.webp);
    background-size: cover;
    background-position: top;
}
.course_image.image_2{
    background-image: url(/img/course_6.webp);
    background-size: cover;
    background-position: top;
}
.course_image.image_2_2{
    background-image: url(/img/course_9.webp);
    background-size: cover;
    background-position: top;
}
.course_image.image_3{
    background-image: url(/img/course_5.webp);
    background-size: cover;
    background-position: top;
}
.course_image.image_3_2{
    background-image: url(/img/physical_1.webp);
    background-size: cover;
    background-position: top;
}
.course_image.image_4{
    background-image: url(/img/pilates_1.webp);
    background-size: cover;
    background-position: top;
}
.course_image.image_5{
    background-image: url(/img/course_4.webp);
    background-size: cover;
    background-position: top;
}
.course_image.image_6{
    background-image: url(/img/physical_1.webp);
    background-size: cover;
    background-position: top;
}

.course_question_box{
    width: 100%;
    height: max-content;
    padding: 10px 5px;
    align-items: center;
    position: relative;
}
.course_question_box.box_1{
    margin-top: 15px;
}
.course_question_box.box_2{
    margin-bottom: 15px;
}

.course_question_row{
    width: 100%;
    max-width: 900px;
    height: max-content;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
}
.course_question_row.row_1{
    justify-content: flex-start;
}
.course_question_row.row_2{
    justify-content: flex-end;
}


.course_question_image{
    width: 100%;
    height: max-content;
    align-items: center;
    position: relative;
}
.course_question_image::before{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
}
.course_question_image.image_1::before{
    width: 30px;
    height: 30px;
    background: url(/img/komatta.png);
    background-size: cover;
    background-position: center;
}
.course_question_image.image_2::before{
    width: 50px;
    height: 50px;
    background: url(/img/light.png);
    background-size: cover;
    background-position: center;
    transform: rotate(-20deg);
}
.course_question_image.image_1{
    max-width: 150px;
}
.course_question_image.image_2{
    max-width: 190px;
}
.course_question_image img{
    width: 100%;
    height: auto;
    border-bottom: 2px solid rgb(212, 92, 22);
}

.course_question_text_box{
    width: 100%;
    max-width: 420px;
    padding: 10px;
    border-radius: 15px;
    position: relative;
    align-items: center;
}
.course_question_text_box::before{
    content: "";
    position: absolute;
    width: 50px;
    height: 30px;
    top: 20%;
    z-index: -1;
}
.course_question_text_box.box_1::before{
    background: rgb(212, 92, 22);
    left: -30px;
    clip-path: polygon(100% 0, 0 50%, 100% 100%);
}
.course_question_text_box.box_2::before{
    background: rgb(247, 159, 108);
    right: -30px;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
.course_question_text_box.box_1{
    background: rgb(212, 92, 22);
}
.course_question_text_box.box_2{
    background: rgb(247, 159, 108);
}
.course_question_text{
    font-size: 16px;
    text-align: justify;
    margin: 5px 0;
}
.course_question_text.text_1{
    color: white;
    font-weight: bold;
}
.course_question_text.text_2{
    font-weight: bold;
}
.course_question_text.text_3{
    font-size: 12px;
    font-weight: bold;
}

.course_text_box{
    width: 100%;
    height: max-content;
}
.course_text_box.box_2{
    padding: 5px;
    padding-top: 0;
    margin-bottom: 15px;
}
.course_text_row{
    padding: 10px 5px;
    align-items: center;
    position: relative;
}
.course_text_row.row_1{
    background: white;
}
.course_text_row.row_2{
    background: rgb(240, 240, 240);
}


.course_text.text_2{
    font-size: 24px;
    text-align: center;
    width: 100%;
    font-weight: bold;
    z-index: 1;
    color: rgb(212, 92, 22);
}
.course_text.text_2 span{
    font-size: 28px;
    font-weight: bold;
    color: rgb(255, 255, 255);
    background: rgb(212, 92, 22);
    padding: 0 5px;
    border-radius: 3px;
}
.course_text.text_3{
    font-size: 14px;
    text-align: center;
    width: 100%;
    z-index: 1;
    font-weight: bold;
    color: rgb(212, 92, 22);
}

.course_price_title_box{
    width: 100%;
    height: max-content;
    margin-bottom: 20px;
    align-items: center;
    position: relative;
    border-top: 2px solid rgb(212, 92, 22);
    border-bottom: 2px solid rgb(212, 92, 22);
    background: white;
}
.course_price_title_box.for_flow{
    max-width: 1200px;
}
.course_price_title_box::before,.course_price_title_box::after{
    position: absolute;
    content: "";
    width: 30px;
    height: 80%;
}
.course_price_title_box::before{
    top: -1px;
    left: 0;
    background: rgb(212, 92, 22);
    clip-path: polygon(0 0, 100% 0, 10% 50%, 50% 100%, 0 100%);
}
.course_price_title_box::after{
    bottom: -1px;
    right: 0;
    background: rgb(212, 92, 22);
    clip-path: polygon(50% 0, 100% 0, 100% 100%, 25% 100%, 90% 50%);
}
.course_price_title{
    padding: 10px 25px;
    position: relative;
    font-size: 20px;
    font-weight: bold;
    z-index: 1;
}

.course_price_text_column{
    width: 100%;
    height: max-content;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 5px;
}
.course_price_text_column:last-of-type{
    margin-bottom: 20px;
}
.course_price_label_box,.course_price_text_box{
    flex: 1;
    flex-basis: 350px;
    padding: 10px 20px;
    align-items: center;
    justify-content: center;
}
.course_price_label_box{
    background: rgb(240, 240, 240);
    border-bottom: 1px solid white;
    flex-wrap: wrap;
}
.course_price_text_box{
    background: white;
    border-bottom: 1px solid rgb(240, 240, 240);
}
.course_label_row{
    width: 100%;
    height: max-content;
    align-items: center;
}

.course_label_text{
    font-size: 16px;
    font-weight: bold;
}
.course_label_text.text_1 span{
    font-size: 24px;
    font-weight: bold;
}
.course_label_text.text_2{
    font-size: 12px;
    padding: 3px 6px;
    background: rgb(212, 92, 22);
    color: white;
    border-radius: 100vh;
    margin-left: 10px;
    font-weight: normal;
}
.label_plus{
    padding: 5px;
    font-size: 24px;
    color: rgb(212, 92, 22);
}

.course_price_text{
    font-size: 18px;
    color: rgb(212, 92, 22);
    text-align: center;
}
.course_price_text span{
    font-size: 36px;
    font-weight: bold;
    color: rgb(212, 92, 22);
}

.course_price_text.for_label{
    color: rgb(0, 0, 0);
    font-size: 16px;
    font-weight: bold;
    font-style: italic;
    border-bottom: 1px solid;
}

.course_content_point_row{
    width: 100%;
    height: max-content;
    min-height: 50vh;
    display: grid;
}
.course_content_point_row.row_1{
    grid-template-columns: 2fr 1fr;
    grid-template-rows: max-content 1fr;
    grid-template-areas: 
    "grid1 grid3"
    "grid2 grid2";
    margin-top: 50px;
}
.course_content_point_row.row_2{
    grid-template-columns: 1fr 2fr;
    grid-template-rows: max-content 1fr;
    grid-template-areas: 
    "grid3 grid1"
    "grid2 grid2";
    margin-top: 20px;
}
.content_point_box{
    width: 100%;
    height: 100%;
    position: relative;
}
.content_point_box.box_1{
    grid-area: grid1;
    align-items: center;
    justify-content: center;
}
.content_point_box.box_2{
    grid-area: grid2;
    justify-content: center;
    gap: 10px;
    padding: 5px;
}
.content_point_box.box_3{
    grid-area: grid3;
    overflow: hidden;
    justify-content: flex-end;
}
.course_point_sub{
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    max-width: 600px;
    height: max-content;
    padding: 100px 50px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.point_sub_underline{
    font-size: 64px;
    font-weight: bold;
    transform: rotate(-5deg);
    border-bottom: 10px solid rgb(255, 255, 75);
    line-height: 1;
    padding: 2px 5px;
    margin: -5px 0;
    z-index: 1;
    position: relative;
}
.point_sub_underline.underline_1 .for_light{
    position: absolute;
    top: 0;
    left: -70px;
    font-size: 64px;
}
.point_sub_underline.underline_2 .for_light{
    position: absolute;
    top: 0;
    right: -70px;
    font-size: 56px;
}

.point_sub_underline .for_strong{
    font-size: 84px;
    font-weight: bold;
}
.point_sub_underline.underline_1 .for_strong{
    color: rgb(212, 92, 22);
}
.point_sub_underline.underline_2 .for_strong{
    color: rgb(61, 140, 0);
}
.point_sub_underline.sub_1{
    margin-left: 40px;
}
.point_sub_underline.sub_3{
    margin-right: 40px;
}
.point_sub_underline.sub_2{
    align-self: center;
}
.point_sub_underline.sub_3{
    align-self: flex-end;
}
.content_point_image_box{
    width: max-content;
    height: 100%;
    max-height: 400px;
    overflow: hidden;
}
.content_point_image_box.box_1{
    align-self: flex-start;
    border-bottom: 5px solid rgb(212, 92, 22);
}
.content_point_image_box.box_2{
    align-self: flex-end;
    border-bottom: 5px solid rgb(61, 140, 0);
}
.content_point_image_box img{
    height: 100%;
    width: auto;
}
.content_point_image_box.box_2 img{
    height: 110%;
}

.content_point_title_row{
    width: 100%;
    gap: 10px;
    align-items: stretch;
}
.content_point_title_row.row_1{
    border-top: 2px solid rgb(212, 92, 22);
}
.content_point_title_row.row_2{
    border-top: 2px solid rgb(61, 140, 0);
}
.content_point_title_label{
    padding: 10px 15px;
    font-size: 48px;
    color: white;
}
.content_point_title_label.label_1{
    background: rgb(212, 92, 22);
}
.content_point_title_label.label_2{
    background: rgb(61, 140, 0);
}
.content_point_title{
    flex: 1;
    padding: 5px 10px;
    font-size: 32px;
    color: white;
    flex-wrap: wrap;
    text-align: center;
    line-height: 2.5;
    font-weight: bold;
}
.content_point_title .for_strong{
    color: rgb(255, 255, 75);
    font-weight: bold;
    display: inline-block;
}
.content_point_title .for_small{
    font-size: 16px;
    color: white;
}
.content_point_title.title_1{
    background: rgb(212, 92, 22);
}
.content_point_title.title_2{
    background: rgb(61, 140, 0);
}

.content_point_text_box{
    width: 100%;
    height: max-content;
    padding: 10px;
}
.content_point_text_box.box_1{
    border: 2px solid rgb(212, 92, 22);
}
.content_point_text_box.box_2{
    border: 2px solid rgb(61, 140, 0);
}

.content_point_text{
    width: 100%;
    height: max-content;
    padding: 5px 10px;
    font-size: 18px;
    text-align: justify;
}

.course_recommend_container{
    width: 100%;
    height: max-content;
    margin-top: 40px;
    flex-wrap: wrap;
}
.recommend_image_box{
    flex: 1;
    max-width: 360px;
    flex-basis: 200px;
    height: max-content;
    border-bottom: 5px solid rgb(212, 92, 22);
    z-index: 1;
}
.recommend_image_box.for_light{
    filter: brightness(110%);
    -webkit-filter: brightness(110%);
}
.recommend_image_box img{
    width: 100%;
    height: auto;
}
.recommend_text_box{
    flex: 2;
    flex-basis: 200px;
    justify-content: center;
}

.recommend_title_box{
    padding: 20px;
    width: 100%;
    justify-content: center;
}
.recommend_title{
    font-size: 84px;
    font-weight: bold;
    transform: skew(-5deg) rotate(-5deg);
    background: linear-gradient(transparent 60%, rgb(181, 255, 20) 60%);
}
.recommend_title .for_strong{
    color: rgb(212, 92, 22);
}

.recommend_main_box{
    width: 100%;
    height: max-content;
    padding: 15px;
    border: 5px solid rgb(212, 92, 22);
    border-radius: 20px;
    gap: 5px;
    background: white;
    z-index: 1;
}
.recommend_text{
    font-size: 16px;
    font-weight: bold;
    text-align: justify;
}
.recommend_text .for_strong{
    font-size: 18px;
    color: rgb(212, 92, 22);
    font-weight: bold;
}
.recommend_text .for_underline{
    font-size: 18px;
    color: rgb(212, 92, 22);
    font-weight: bold;
    background: linear-gradient(transparent 60%, rgb(181, 255, 20) 60%);
}

.section.section_compare{
    min-height: 50vh;
    align-items: center;
    padding-top: 100px;
    gap: 30px;
}
.section_title_box.for_compare{
    margin: 0;
    margin-top: 30px;
}
/* .section_title_box.for_compare::before,.section_title_box.for_compare::after{
    display: none;
} */
.section_compare_container{
    width: 100%;
    padding: 10px;
}
.section_compare_container.container_1{
    max-width: 1000px;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}
.section_compare_container.container_2{
    max-width: 1200px;
    gap: 5px;
    align-items: flex-end;
    position: relative;
}
.section_compare_container.container_3{
    max-width: 1000px;
    gap: 5px;
    align-items: center;
}
.compare_title_box{
    align-items: flex-start;
    justify-content: center;
    padding: 10px;
    gap: 10px;
    position: relative;
}
.compare_title{
    font-size: 48px;
    letter-spacing: 3px;
    line-height: 1.8em;
    text-align: justify;
    font-weight: bold;
    background-image: linear-gradient(to bottom, transparent 80%, rgb(255, 255, 75) 80%);
}

.compare_title_image{
    position: absolute;
    top: 10px;
    right: 10px;
    gap: 10px;
    align-items: center;
    transform: rotate(40deg) scale(1.5);
}
.compare_title_image_inside{
    width: 20px;
    height: 40px;
    background: rgb(255, 255, 75);
    clip-path: polygon(100% 0, 0 0, 50% 100%);
}
.compare_title_image_inside.inside_1{
    transform: rotate(-35deg);
}
.compare_title_image_inside.inside_2{
    margin-bottom: 30px;
}
.compare_title_image_inside.inside_3{
    transform: rotate(35deg);
}
.compare_image_box{
    flex: 1;
    max-width: 300px;
    border-bottom: 3px solid rgb(212, 92, 22);
}
.compare_image_box.box_2{
    max-width: 150px;
}
.compare_image_box img{
    width: 100%;
    height: auto;
}
.compare_label_column{
    gap: 5px;
}
.compare_label_box{
    width: 200px;
    height: 100px;
    align-items: flex-start;
    justify-content: center;
    background: gray;
    padding: 20px;
}
.compare_label{
    color: white;
    letter-spacing: 1px;
}
.compare_price_row{
    flex: 1;
    overflow-x: scroll;
    gap: 5px;
    align-items: flex-end;
    position: relative;
}
.compare_price_row::-webkit-scrollbar{
    display: none;
}
.compare_price_column{
    flex: 1;
    gap: 5px;
}
.compare_price_column.column_1{
    flex: 2;
    min-width: 350px;
}
.compare_price_column.column_2{
    min-width: 300px;
}
.compare_name_box{
    width: 100%;
    align-items: center;
    justify-content: center;
    border-radius: 100vh 100vh 0 0;
}
.compare_name_box.box_1{
    height: 80px;
    background: rgb(212, 92, 22);
}
.compare_name_box.box_2{
    height: 60px;
    background: rgb(200, 200, 200);
}
.compare_name_box.box_1 img{
    height: auto;
    width: 50%;
}
.compare_name{
    letter-spacing: 1px;
    font-size: 14px;
    text-align: center;
    font-weight: bold;
}
.compare_price_box{
    width: 100%;
    height: 100px;
    background: white;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.compare_price_box.box_1{
    background: rgb(212, 92, 22);
}
.compare_price_box.box_2{
    background: rgb(200, 200, 200);
}
.compare_price{
    letter-spacing: 1px;
}
.compare_price.price_1{
    color: white;
    font-size: 20px;
    line-height: 1;
}
.compare_price.price_1 .for_strong{
    color: white;
    font-size: 36px;
    font-weight: bold;
}
.compare_price.price_2{
    font-size: 16px;
    line-height: 1;
}
.compare_price.price_2 .for_strong{
    font-size: 24px;
    font-weight: bold;
}
.compare_price_sub{
    color: white;
    font-size: 12px;
}
.price_row_grab{
    width: 100px;
    height: 100px;
    position: absolute;
    top: calc(50% - 50px);
    left: calc(50% - 50px);
    z-index: 1;
    justify-content: center;
    align-items: center;
    padding: 5px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0.5;
    transition: opacity 0.25s;
    pointer-events: none;
}
.row_grab_image_1{
    width: 90%;
    height: auto;
}
.row_grab_image_2{
    width: 60%;
    height: auto;
    margin-top: -15px;
    animation: for_row_grab 1.5s ease infinite alternate;
}
@keyframes for_row_grab{
    from{
        transform: translateX(-5px);
    }
    to{
        transform: translateX(5px);
    }
}
.section_compare_container.container_2:hover .price_row_grab{
    opacity: 0;
}
.price_box_alert{
    width: 100%;
    max-width: 1200px;
    justify-content: center;
    margin-top: -30px;
    padding: 0 10px;
}
.price_box_alert_text{
    font-size: 14px;
    letter-spacing: 1px;
}
.compare_text_box.box_1{
    padding: 10px;
    align-items: flex-start;
    border: 1px solid rgb(212, 92, 22);
}
.compare_text_box.box_2{
    width: 100%;
    max-width: 800px;
    padding: 60px 10px;
    gap: 20px;
    align-items: center;
    justify-content: center;
    background: rgb(212, 92, 22);
    position: relative;
    transition: opacity ease 0.25s;
    border-radius: 10px;
    align-self: center;
}
.compare_text_box.box_2:hover{
    opacity: 0.8;
}
.compare_text.text_1{
    font-size: 20px;
    letter-spacing: 2px;
    line-height: 1.8em;
    padding: 15px;
    background: rgb(212, 92, 22);
    border-radius: 5px;
    color: white;
    text-align: center;
    font-weight: bold;
}
.compare_text.text_2{
    font-size: 14px;
    letter-spacing: 1px;
    text-align: justify;
    padding: 5px 10px;
}
.compare_text.text_3{
    font-weight: bold;
    color: white;
    letter-spacing: 1px;
    font-size: 18px;
}
.compare_text.text_1 .for_strong{
    color: white;
    font-weight: bold;
    font-size: 28px;
    background: linear-gradient(to top, rgb(255, 255, 75) 3px, transparent 3px);
    display: inline-block;
}
.compare_content_row{
    width: 100%;
    max-width: 800px;
    padding: 5px;
    gap: 5px;
    position: relative;
}
.compare_content_row.row_1{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    background: rgb(212, 92, 22);
}
.compare_content_alert_box{
    margin-top: -50px;
}
.compare_content_alert_box *{
    color: rgb(211, 0, 0);
}
.compare_content_title_box{
    justify-content: center;
    align-items: center;
    padding: 10px;
}
.compare_content_title{
    text-align: justify;
    line-height: 1.8em;
    letter-spacing: 1px;
    font-weight: bold;
    color: white;
    background: linear-gradient(to top, rgb(255, 255, 75) 5px, transparent 5px);
}
.compare_content_title.title_1{
    font-size: 20px;
}
.compare_content_title.title_2{
    font-size: 36px;
}
.compare_content_image_box,.compare_content_link_box{
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.compare_content_image_box img{
    width: 100%;
    height: auto;
}
.compare_content_link_box{
    border: 4px double white;
    transition: background ease 0.25s,opacity ease 0.25s;
    padding: 20px;
}
.compare_content_link_box.box_2{
    background: rgb(212, 92, 22);
    width: 100%;
    max-width: 300px;
    align-self: center;
}
.compare_content_link_box.box_1:hover{
    background: rgb(255, 255, 255, 0.2);
}
.compare_content_link_box.box_2:hover{
    opacity: 0.8;
}
.compare_content_link{
    color: white;
    font-size: 18px;
    letter-spacing: 2px;
    font-weight: bold;
}
.compare_content_box{
    width: 100%;
    gap: 10px;
    align-items: flex-start;
}
.compare_content_box.box_2{
    justify-content: flex-end;
}
.compare_content_image{
    height: 250px;
    overflow-y: hidden;
    align-items: flex-start;
    border-bottom: 2px solid rgb(212, 92, 22);
}

.compare_content_image img{
    width: auto;
    height: 100%;
}
.compare_content_image.image_2 img{
    width: auto;
    height: 120%;
}
.compare_content_text_box{
    padding: 25px 30px;
    align-items: flex-start;
    border-radius: 10px;
    flex-wrap: wrap;
    position: relative;
}
.compare_content_text{
    letter-spacing: 1px;
    line-height: 1.8em;
    font-weight: bold;
    font-size: 20px;
}
.compare_content_text.text_2{
    color: white;
    background: linear-gradient(to top, rgb(255, 255, 75) 3px, transparent 3px);
}
.compare_content_text_box.box_1{
    background: rgb(255, 255, 75);
}
.compare_content_text_box.box_2{
    flex: 1;
    max-width: 450px;
    background: rgb(212, 92, 22);
}
.compare_content_text_box::before{
    content: "";
    position: absolute;
    width: 30px;
    height: 20px;
    top: 20px;
}
.compare_content_text_box.box_1::before{
    background: rgb(255, 255, 75);
    left: -29px;
    clip-path: polygon(100% 0, 0 80%, 100% 100%);
}
.compare_content_text_box.box_2::before{
    background: rgb(212, 92, 22);
    right: -29px;
    clip-path: polygon(100% 80%, 0 0, 0 100%);
}
.compare_content_row.row_2{
    gap: 10px;
}

.section_title_box.type_2{
    margin-top: 60px;
}
.recommend_title_box.for_trial{
    justify-content: center;
}
.recommend_title.for_trial{
    background: linear-gradient(transparent 60%, rgb(255, 255, 75) 60%);
}
.recommend_title .for_trial{
    color: rgb(61, 140, 0);
}
.trial_recommend_column{
    width: 100%;
    margin-top: 50px;
    align-items: center;
    gap: 50px;
}
.trial_recommend_text_box.type_1{
    padding: 40px;
    border-radius: 15px;
    border: 5px solid rgb(212, 92, 22);
    background: white;
    position: relative;
}
.trial_recommend_text_box.type_1::before{
    content: "";
    position: absolute;
    width: 70px;
    aspect-ratio: 1;
    background-image: url(/img/light.png);
    background-size: contain;
    background-repeat: no-repeat;
    top: -40px;
    right: -30px;
    transform: rotate(20deg);
    filter: drop-shadow(2px 2px rgb(255, 255, 255));
}
.trial_text.type_1{
    font-size: 18px;
    text-align: justify;
    line-height: 1.8em;
}
.trial_text.type_1 .strong{
    color: rgb(212, 92, 22);
    font-size: 32px;
    background: linear-gradient(transparent 60%, rgb(255, 255, 75) 60%);
}
.trial_recommend_text_box.type_2{
    width: 100%;
    align-items: center;
}
.trial_recommend_text_row.type_1{
    width: 100%;
    max-width: 1000px;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.trial_border.type_1{
    flex: 1;
    height: 0;
    border-top: 3px dotted rgb(212, 92, 22);
}
.trial_border.type_1:first-of-type{
    max-width: 40px;
}
.trial_text_asset{
    font-size: 20px;
    color: rgb(212, 92, 22);
    padding: 10px;
    position: relative;
    margin-left: 20px;
    line-height: 1;
}
.trial_text_asset::before{
    content: "";
    position: absolute;
    width: 100%;
    aspect-ratio: 1;
    border: 2px dotted rgb(212, 92, 22);
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    box-sizing: border-box;
    border-radius: 50%;
}
.trial_text.type_2{
    font-size: 24px;
    border-bottom: 2px solid rgb(255, 255, 75);
    margin-right: 20px;
}
.trial_recommend_text_row.type_2{
    width: 100%;
    max-width: 1000px;
    padding: 60px 40px 40px;
    position: relative;
    border: 3px dotted rgb(212, 92, 22);
    border-top: none;
    margin-top: -22px;
    align-items: center;
    gap: 0px;
    background: white;
    z-index: -1;
}
.trial_text.type_3{
    font-size: 24px;
}
.trial_text.type_3 .for_ruby{
    position: relative;
    font-size: 32px;
    padding: 0 10px;
    font-weight: bold;
}
.trial_text.type_3 .for_ruby::before{
    position: absolute;
    font-size: 12px;
    top: -15px;
    left: 50%;
    font-weight: 400;
    white-space: nowrap;
    transform: translateX(-50%);
}
.trial_text.type_3 .for_ruby.type_1::before{
    content: "(通い放題25分コース料金)";
    color: rgb(61, 140, 0);
}
.trial_text.type_3 .for_ruby.type_2::before{
    content: "(トライアルコース料金)";
    color: rgb(212, 92, 22);
}
.trial_text.type_4{
    font-size: 32px;
    font-weight: bold;
    position: relative;
}
.trial_text.type_4 .strong{
    color: rgb(212, 92, 22);
    font-size: 64px;
    background: linear-gradient(transparent 60%, rgb(255, 255, 75) 60%);
}
.trial_text.type_4::before{
    content: "";
    position: absolute;
    width: 60px;
    aspect-ratio: 1;
    top: -20px;
    left: -60px;
    background: url(/img/trial_asset.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    filter: drop-shadow(2px 2px white);
}
.trial_content_container{
    width: 100%;
    align-items: center;
    margin-top: 100px;
    gap: 60px;
    padding: 60px 5px;
}
.trial_content_row{
    width: 100%;
    max-width: 1000px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: 50px max-content 200px;
    grid-template-areas: 
    "grid1 x"
    "grid1 grid2"
    "y grid2";
    padding: 5px;
}
.trial_content_text_box{
    grid-area: grid1;
    width: 100%;
    height: max-content;
    align-items: center;
    gap: 40px;
    padding: 5px;
}
.trial_content_column{
    width: 100%;
    align-items: flex-start;
    gap: 30px;
    padding: 40px;
    background: rgb(240, 240, 240);
    position: relative;
}
.trial_content_column::before,.trial_content_column::after{
    content: "";
    position: absolute;
    width: 40px;
    aspect-ratio: 1;
}
.trial_content_column::before{
    top: -10px;
    left: -10px;
    border-top: 5px solid rgb(212, 92, 22);
    border-left: 5px solid rgb(212, 92, 22);
}
.trial_content_column::after{
    bottom: -10px;
    right: -10px;
    border-bottom: 5px solid rgb(212, 92, 22);
    border-right: 5px solid rgb(212, 92, 22);
}
.trial_content_box{
    width: 100%;
    align-items: flex-start;
    gap: 20px;
}
.trial_content_title_box{
    justify-content: center;
    align-items: center;
    gap: 40px;
}
.trial_content_title_asset{
    width: 60px;
    min-width: 60px;
    aspect-ratio: 1;
}
.trial_content_title_asset.type_1{
    background-image: url(/img/trial_title_asset1.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    filter: drop-shadow(-5px -2px rgb(255, 255, 75));
    -webkit-filter: drop-shadow(-5px -2px rgb(255, 255, 75));
}
.trial_content_title_asset.type_2{
    background-image: url(/img/trial_title_asset2.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    filter: drop-shadow(5px -2px rgb(255, 255, 75));
    -webkit-filter: drop-shadow(5px -2px rgb(255, 255, 75));
}
.trial_content_text.type_1{
    font-size: 54px;
    font-weight: bold;
    padding: 0 15px 6px;
    border-top: 5px dashed rgb(212, 92, 22);
    border-bottom: 5px dashed rgb(212, 92, 22);
}
.trial_content_asset{
    width: 35px;
    min-width: 35px;
    aspect-ratio: 1;
    background: url(/img/checkbox.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.trial_content_text.type_2{
    font-size: 24px;
    text-decoration: underline;
    text-decoration-color: white;
    text-decoration-thickness: 10px;
    text-underline-offset: -3px;
    text-decoration-skip-ink: none;
}
.trial_image_box{
    grid-area: grid2;
    width: 100%;
    height: 100%;
    background-image: url(/img/ystrust_model_19.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom center;
    align-items: flex-end;
    justify-content: center;
}
.trial_image_border{
    width: 80%;
    min-width: 200px;
    height: 3px;
    background: rgb(212, 92, 22);
}
.trial_recommend_arrow_box{
    align-items: center;
    gap: 20px;
    margin: 40px 0;
}
.trial_arrow_text{
    font-size: 24px;
    letter-spacing: 3px;
    color: white;
    background: rgb(212, 92, 22);
    padding: 15px 30px 19px;
    position: relative;
}
.trial_arrow_text .for_block{
    color: white;
}
.trial_arrow_text::before,.trial_arrow_text::after{
    content: "";
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    border: 2px solid rgb(212, 92, 22);
}
.trial_arrow_text::before{
    top: -5px;
    left: -5px;
}
.trial_arrow_text::after{
    bottom: -5px;
    right: -5px;
}
.recommend_arrow{
    font-size: 32px;
    line-height: 1;
    color: rgb(212, 92, 22);
    font-weight: bold;
}

.trial_anchor_container{
    width: 100%;
    padding: 5px;
    align-items: center;
    margin-top: 100px;
}
.trial_anchor_box{
    align-items: center;
    position: relative;
}
.trial_anchor_title_box{
    padding: 20px 40px;
    gap: 20px;
    align-items: flex-start;
}
.trial_anchor_text.type_1{
    font-size: 16px;
    padding: 2px 15px;
    border-top: 1px solid rgb(212, 92, 22);
    border-bottom: 1px solid rgb(212, 92, 22);
    font-weight: bold;
    letter-spacing: 1px;
}
.trial_anchor_text.type_2{
    font-size: 28px;
    letter-spacing: 3px;
    font-weight: bold;
    text-align: end;
    line-height: 1.8em;
    position: relative;
}
.trial_anchor_text.type_2 .strong{
    font-size: 54px;
    color: rgb(212, 92, 22);
    background: linear-gradient(transparent 60%, rgb(255, 255, 75) 60%);
}
.trial_anchor_text.type_2::before{
    content: "";
    position: absolute;
    width: 40px;
    aspect-ratio: 1;
    top: -10px;
    left: -40px;
    background: url(/img/trial_asset.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transform: rotate(-10deg);
}
.trial_anchor_image_box{
    flex: 1;
    height: 200px;
    justify-content: center;
}
.trial_anchor{
    height: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgb(212, 92, 22);
    align-items: center;
    justify-content: center;
    transition: opacity ease 0.25s;
}
.trial_anchor_text.type_3{
    color: white;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: bold;
}
.trial_anchor:hover{
    opacity: 0.8;
}
@media all and (min-width:1200px){
    .price_row_grab{
        display: none;
    }
}
@media all and (max-width:1048px){
    .flow_number{
        font-size: 32px;
    }
    .section_1_image_container{
        display: flex;
    }
    .section_1_image_inside{
        align-items: center;
    }
    .section_1_image_inside.inside_2{
        display: none;
    }
    .section_1_image_inside.inside_1{
        width: 100%;
        height: 100%;
        background-image: url(/img/for_page_top_5.webp);
        background-size: contain;
    }
    .recommend_title_box{
        justify-content: flex-end;
    }
    .recommend_title{
        font-size: 72px;
    }
    .compare_price_row{
        cursor: grab;
    }
    .compare_price_row:active{
        cursor: grabbing;
    }
    .trial_content_container{
        margin-top: 50px;
        gap: 40px;
    }
    .trial_content_title_box{
        gap: 20px;
    }
    .trial_content_text.type_1{
        font-size: 42px;
    }
    .trial_content_title_asset{
        width: 40px;
        min-width: 40px;
    }
    .trial_content_asset{
        width: 30px;
        min-width: 30px;
    }
    .trial_content_text.type_2{
        font-size: 20px;
    }
    .trial_anchor_text.type_2{
        font-size: 24px;
    }
    .trial_anchor_text.type_2 .strong{
        font-size: 48px;
    }
}
@media all and (max-width:768px){
    .flow_content_container{
        height: 50vh;
        overflow-y: scroll;
    }
    .flow_content_container::-webkit-scrollbar{
        width: 10px;
        background: rgb(111, 111, 111);
    }
    .flow_content_container::-webkit-scrollbar-thumb{
        background: rgb(212, 92, 22);
    }
    .point_sub_underline{
        font-size: 48px;
        margin: 0;
    }
    .point_sub_underline.underline_1 .for_light{
        position: absolute;
        top: 0;
        left: -65px;
        font-size: 52px;
    }
    .point_sub_underline.underline_2 .for_light{
        position: absolute;
        top: 0;
        right: -65px;
        font-size: 48px;
    }
    
    .point_sub_underline .for_strong{
        font-size: 64px;
        font-weight: bold;
    }
    .content_point_image_box{
        max-height: 300px;
    }
    .content_point_image_box.box_1{
        align-self: center;
    }
    .content_point_image_box.box_2{
        align-self: center;
    }
    .point_sub_arrow{
        display: none;
    }
    .content_point_title_label{
        font-size: 32px;
    }
    .content_point_title{
        font-size: 24px;
    }
    .content_point_text{
        font-size: 16px;
    }
    .recommend_title{
        font-size: 42px;
        white-space: nowrap;
    }
    .recommend_text{
        font-size: 14px;
    }
    .recommend_text .for_strong{
        font-size: 16px;
    }
    .recommend_text .for_underline{
        font-size: 16px;
    }
    .section.section_compare{
        padding-top: 50px;
    }
    .compare_content_title.title_1{
        font-size: 18px;
    }
    .compare_content_title.title_2{
        font-size: 28px;
    }
    .compare_content_link{
        font-size: 16px;
        letter-spacing: 1px;
    }
    .compare_content_text{
        font-size: 18px;
    }
    .trial_content_text.type_1{
        font-size: 32px;
    }
    .trial_content_title_asset{
        width: 30px;
        min-width: 30px;
    }
    .trial_content_row{
        grid-template-columns: 2fr 1fr;
        grid-template-rows: 50px max-content 50px;
    }
    .trial_content_column{
        padding: 40px 20px;
    }
    .trial_arrow_text{
        font-size: 20px;
        letter-spacing: 1px;
    }
    .trial_recommend_arrow_box{
        flex-direction: column;
        gap: 10px;
        margin: 20px 0;
    }
    .recommend_arrow:first-of-type{
        display: none;
    }
    .recommend_arrow{
        font-size: 48px;
    }
    .recommend_title.for_trial{
        font-size: 8vw;
    }
    .trial_recommend_text_box.type_1{
        padding: 40px 20px;
    }
    .trial_recommend_text_box.type_1::before{
        right: -10px;
    }
    .trial_text.type_1{
        font-size: 16px;
    }
    .trial_text.type_1 .strong{
        font-size: 24px;
    }
    .trial_text_asset{
        font-size: 16px;
        margin-left: 10px;
    }
    .trial_text.type_2{
        font-size: 20px;
        margin-right: 10px;
    }
    .trial_recommend_text_row.type_2{
        margin-top: -20px;
    }
    .trial_text.type_3{
        font-size: 16px;
    }
    .trial_text.type_3 .for_ruby,.trial_text.type_4{
        font-size: 24px;
    }
    .trial_text.type_3 .for_ruby::before{
        font-size: 10px;
    }
    .trial_text.type_4 .strong{
        font-size: 48px;
    }
    .trial_text.type_4::before{
        width: 40px;
        top: -10px;
        left: -40px;
    }
    .trial_anchor_image_box{
        height: 150px;
    }
    .trial_anchor_text.type_3{
        font-size: 16px;
    }
    .trial_anchor_text.type_1{
        font-size: 14px;
    }
    .trial_anchor_text.type_2{
        font-size: 20px;
    }
    .trial_anchor_text.type_2 .strong{
        font-size: 36px;
    }
}
@media all and (max-width:548px){
    .section_container.section_2_container{
        margin: 0;
    }
    .course_title_container .section_title_box.box_1{
        margin: 10px 0;
    }
    .section_1_image_inside.inside_1{
        background-size: 120%;
    }
    .flow_content_container{
        margin-bottom: 20px;
    }
    .flow_content_row{
        width: 100%;
        height: max-content;
    }
    .flow_content_box{
        height: max-content;
        border-bottom: 2px solid rgba(0, 0, 0, 0.5);
        background: rgba(255, 255, 255);
    }
    .flow_content_image,.flow_text_box{
        height: max-content;
    }
    .flow_content_number{
        width: 50px;
        min-width: 50px;
        height: max-content;
        background: rgba(255, 255, 255);
    }
    .flow_number{
        font-size: 24px;
    }
    .flow_title{
        font-size: 18px;
    }
    .flow_text{
        font-size: 10px;
    }
    .team_flow_image_box{
        max-width: 260px;
    }
    .team_flow_image img{
        height: 170px;
    }
    .course_explain_text_box{
        margin-bottom: 0;
    }
    .course_content_container{
        margin-bottom: 0;
    }
    .course_subtitle_model_box img{
        width: 70%;
    }
    .course_model_1{
        display: none;
    }
    .course_model_2{
        display: block;
    }
    .course_subtitle{
        font-size: 12px;
    }
    .course_subtitle_main{
        font-size: 20px;
    }
    .course_subtitle_point{
        font-size: 14px;
    }
    .explain_sub_title{
        font-size: 14px;
    }
    .explain_main_title{
        font-size: 24px;
    }
    .benefit_image_box{
        width: 150px;
    }
    .benefit_image_box.box_2{
        width: 200px;
        padding: 0;
    }
    .benefit_title{
        font-size: 14px;
    }
    
    .benefit_text.text_1,.benefit_text.text_2{
        font-size: 18px;
    }
    .benefit_text.text_1 span{
        font-size: 32px;
    }
    .benefit_text.text_2 span{
        font-size: 20px;
        display: inline-block;
    }
    .benefit_image{
        max-width: 60px;
    }
    .explain_column_check{
        position: absolute;
        top: 5px;
        left: 5px;
        width: 30px;
        height: max-content;
        align-items: center;
    }
    .course_text.text_2{
        font-size: 16px;
    }
    .course_text.text_2 span{
        font-size: 18px;
    }
    .course_text.text_3{
        font-size: 12px;
    }
    .course_label_text.text_1 span{
        font-size: 18px;
    }
    .course_price_text{
        font-size: 14px;
    }
    .course_price_text span{
        font-size: 32px;
    }
    .course_image{
        min-height: 300px;
    }
    .course_question_text{
        font-size: 12px;
    }
    .course_question_row{
        gap: 10px;
    }
    
    .course_question_row.row_1{
        flex-wrap: wrap-reverse;
        justify-content: flex-start;
    }
    .course_question_row.row_2{
        flex-wrap: wrap;
        justify-content: flex-end;
    }
    
    .course_question_image.image_1{
        max-width: 100px;
    }
    .course_question_image.image_2{
        max-width: 120px;
    }
    .course_question_image.image_2::before{
        width: 40px;
        height: 40px;
    }
    .course_question_text.text_3{
        font-size: 10px;
    }
    .course_question_text_box::before{
        display: none;
    }
    .course_question_text_box::after{
        content: "";
        position: absolute;
        width: 30px;
        height: 50px;
        bottom: -30px;
        z-index: -1;
    }
    .course_question_text_box.box_1::after{
        background: rgb(212, 92, 22);
        left: 40%;
        clip-path: polygon(100% 0, 0 0, 20% 100%);
    }
    .course_question_text_box.box_2::after{
        background: rgb(247, 159, 108);
        right: 40%;
        clip-path: polygon(100% 0, 0 0, 80% 100%);
    }
    .course_point_sub{
        padding: 20px;
    }
    .course_content_point_row.row_1,.course_content_point_row.row_2{
        grid-template-columns: 1fr 1fr;
    }
    .content_point_image_box{
        max-height: 170px;
    }
    .point_sub_underline{
        font-size: 32px;
        margin: 0;
        white-space: nowrap;
    }
    .point_sub_underline.underline_1 .for_light{
        left: -30px;
        font-size: 32px;
    }
    .point_sub_underline.underline_2 .for_light{
        right: -30px;
        font-size: 32px;
    }
    
    .point_sub_underline .for_strong{
        font-size: 36px;
        font-weight: bold;
    }
    .point_sub_underline.sub_1{
        margin-left: 10px;
    }
    .point_sub_underline.sub_3{
        margin-right: 10px;
    }
    .content_point_image_box.box_1,.content_point_image_box.box_2{
        justify-content: center;
    }
    .content_point_title_label{
        font-size: 24px;
        padding: 5px 10px;
        display: flex;
        align-items: center;
    }
    .content_point_title{
        font-size: 16px;
    }
    .content_point_text{
        font-size: 14px;
    }
    .content_point_title .for_small{
        font-size: 12px;
    }
    .recommend_title{
        font-size: 28px;
    }
    .recommend_image_box{
        align-self: flex-end;
        max-width: 200px;
        border-bottom: none;
    }
    .recommend_image_box img{
        width: 100%;
        height: auto;
    }
    .recommend_main_box{
        padding: 10px;
        border-width: 3px;
    }
    .recommend_text{
        font-size: 12px;
    }
    .recommend_text .for_strong{
        font-size: 14px;
    }
    .recommend_text .for_underline{
        font-size: 14px;
    }
    .section.section_compare{
        gap: 10px;
        padding-bottom: 50px;
    }
    .section_compare_container{
        padding: 5px;
    }
    .section_compare_container.container_1{
        gap: 20px;
    }
    .compare_title{
        font-size: 28px;
    }
    .compare_title_image{
        transform: rotate(60deg) scale(1.5);
    }
    .compare_title_image_inside{
        width: 15px;
        height: 30px;
    }
    .compare_name_box.box_1 img{
        width: 70%;
    }
    .compare_label_box{
        width: 120px;
        padding: 10px;
    }
    .compare_label{
        font-size: 14px;
    }
    .compare_price_column.column_1{
        min-width: 230px;
    }
    .compare_price_column.column_2{
        min-width: 200px;
    }
    .compare_price.price_1{
        font-size: 16px;
    }
    .compare_price.price_1 .for_strong{
        font-size: 28px;
    }
    .compare_text.text_1{
        font-size: 14px;
    }
    .compare_text.text_2{
        font-size: 10px;
    }
    .compare_text_title.title_1{
        font-size: 18px;
    }
    .compare_text_title.title_2{
        font-size: 16px;
    }
    .compare_text_box.box_2{
        max-width: 300px;
    }
    .compare_text_sub{
        font-size: 12px;
        top: -25px;
        left: -25px;
    }
    .compare_text.text_3{
        font-size: 14px;
    }
    .price_box_alert{
        margin-top: -10px;
    }
    .price_box_alert_text{
        font-size: 10px;
    }
    .section_title_box.for_compare{
        margin-bottom: 30px;
    }
    .compare_text.text_1 .for_strong{
        font-size: 24px;
    }
    .compare_content_row.row_1{
        grid-template-columns: repeat(2, 1fr);
    }
    .compare_content_image_box.box_1{
        display: none;
    }
    .compare_content_title.title_1{
        font-size: 16px;
    }
    .compare_content_title.title_2{
        font-size: 24px;
    }
    .compare_content_box{
        gap: 0;
    }
    .compare_content_box.box_1{
        flex-direction: column-reverse;
    }
    .compare_content_box.box_2{
        flex-direction: column;
    }
    .compare_content_image{
        height: 180px;
    }
    .compare_content_text_box{
        padding: 15px 20px;
    }
    .compare_content_text_box.box_1,.compare_content_image.image_2{
        align-self: flex-end;
    }
    .compare_content_text_box.box_2{
        max-width: 300px;
    }
    .compare_content_row.row_2{
        gap: 20px;
    }
    .compare_content_text{
        font-size: 16px;
    }
    .compare_content_text_box::before{
        content: "";
        position: absolute;
        width: 20px;
        height: 30px;
        top: inherit;
        bottom: -29px;
    }
    .compare_content_text_box.box_1::before{
        left: 20px;
        clip-path: polygon(20% 100%, 100% 0, 0 0);
    }
    .compare_content_text_box.box_2::before{
        right: 100px;
        clip-path: polygon(80% 100%, 100% 0, 0 0);
    }
    .compare_content_alert_box{
        margin-top: -10px;
    }
    .trial_content_title_box{
        gap: 5px;
    }
    .trial_content_text.type_1{
        font-size: 28px;
        padding: 10px 15px 12px;
        border-top: 3px dashed rgb(212, 92, 22);
        border-bottom: 3px dashed rgb(212, 92, 22);
    }
    .trial_content_title_asset{
        width: 25px;
        min-width: 25px;
    }
    .trial_content_container{
        padding: 40px 5px;
        margin-top: 20px;
    }
    .trial_content_row{
        grid-template-columns: 1.5fr 1fr;
        grid-template-rows: max-content 200px;
        grid-template-areas: 
        "grid1 grid1"
        "x grid2";
    }
    .trial_content_column{
        padding: 20px;
        gap: 20px;
    }
    .trial_content_text.type_2{
        font-size: 14px;
        white-space: nowrap;
        font-weight: bold;
    }
    .trial_content_box{
        gap: 10px;
    }
    .trial_content_asset{
        width: 20px;
        min-width: 20px;
    }
    .trial_content_column::before,.trial_content_column::after{
        width: 20px;
    }
    .trial_arrow_text{
        font-size: 18px;
        text-align: center;
        font-weight: bold;
    }
    .trial_arrow_text .for_block{
        display: inline-block;
        font-weight: bold;
    }
    .recommend_arrow{
        font-size: 32px;
    }
    .section_title_box.type_2{
        margin-top: 30px;
    }
    .trial_recommend_column{
        margin-top: 20px;
        margin-bottom: 20px;
        gap: 20px;
    }
    .trial_recommend_text_box.type_1{
        padding: 20px;
    }
    .trial_recommend_text_box.type_1::before{
        width: 60px;
    }
    .trial_text.type_1{
        font-size: 14px;
        text-align: justify;
    }
    .trial_text.type_1 .strong{
        font-size: 20px;
    }
    .trial_text_asset{
        font-size: 14px;
        margin-left: 10px;
    }
    .trial_text.type_2{
        font-size: 16px;
        margin-right: 10px;
    }
    .trial_recommend_text_row.type_2{
        padding: 60px 20px 40px;
        margin-top: -14px;
    }
    .trial_text.type_3 .for_ruby,.trial_text.type_4{
        font-size: 20px;
        text-align: justify;
    }
    .trial_text.type_4{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .trial_text.type_4 .strong{
        font-size: 36px;
    }
    .trial_recommend_text_row.type_2{
        gap: 10px;
    }
    .trial_text.type_4::before{
        width: 30px;
        top: 0;
        left: -10px;
    }
    .trial_anchor_box{
        flex-direction: column;
    }
    .trial_anchor_title_box{
        padding: 20px 10px;
        align-items: center;
        gap: 10px;
    }
    .trial_anchor_text.type_2 .strong{
        font-size: 32px;
    }
    .trial_anchor_text.type_2::before{
        left: -20px;
        top: -30px;
        transform: rotate(25deg);
    }
    .trial_anchor_image_box{
        flex: none;
        width: 100%;
        max-width: 300px;
        height: max-content;
    }
    .trial_anchor{
        width: 100%;
        height: max-content;
        aspect-ratio: 0;
        border-radius: 0;
        padding: 20px 10px;
        border: 4px double white;
    }
    .trial_anchor_container{
        margin: 40px 0;
    }
}
