@charset "utf-8";
/* common */
:root {
    --primary-white: #ffffff;
    --primary-black: #131313;
    --primary-orange: #FF8400;
    --primary-gray: #666666;
    --primary-beiju: #A27E54;
    --primary-red:#AB0500;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
}

body {
    font-family:
        'Noto Sans JP',
        Arial,
        sans-serif ;
    font-style: normal;
    font-weight: 500;
    color: var(--primary-black);
    line-height: 1.4;
    background-color: var(--primary-white);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-size: 1.6rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

a {
    color: inherit;
    text-decoration: none;
}

.fade-in {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.fade-in.is-show {
    opacity: 1;
}

/* main */
.main {
    line-height: 0;
}

.main_sp {
    width: 100%;
}

.main_pc {
    display: none;
}

.down_icon {
    position: absolute;
    width: 5%;
    margin-top: -3%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    z-index: 20;
}

/* main_pc */
@media screen and (min-width: 768px) {
    .main_sp {
        display: none;
    }

    .main_pc {
        display: block;
        width: 100%;
    }

    .down_icon {
        width: 2%;
        margin-top: -1%;
    }
}

/* main_btn */
.main_btn {
    background-image: url("../img/or_bg.png");
}

.btn_inner {
    padding: 10px 9.6%;
}

.btn_wrap {
    border-radius: 26px;
    overflow: visible;
    cursor: pointer;
    animation: pulse 2s ease-in-out infinite;
    transition: transform 0.2s ease;
}

.btn_wrap:hover {
    animation: none;
    transform: scale(1.05);
}

.btn_wrap:active {
    transform: scale(0.98);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.06);
    }
}

.btn {
    width: 100%;
    display: block;
    border-radius: 26px;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
    transform: translateZ(0);
    will-change: filter, transform;
}

/* main_btn_pc */
@media screen and (min-width: 768px) {
    .btn_inner {
        padding: 24px 32% 16px;
    }
}

/* worries */
.worries {
    position: relative;
}

.worries_ttl {
    position: relative;
    z-index: 20;
    width: 100%;
    max-width: 425px;
    margin: 0 auto;
}

.worries_bg_sp {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 5;
    height: 546px;
    object-fit: cover;
    object-position: center;
}

.worries_bg_pc {
    display: none;
}

.worries_box {
    position: relative;
    padding: 13px 9.6% 0;
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.worries_block {
    max-width: 420px;
    margin: 0 auto;
}

.worries_contents {
    position: relative;
    padding-bottom: 28px;
}

.worries_contents::after {
    content: "";
    display: block;
    height: 1px;
    margin-top: 8px;
    border-bottom: 1px dashed #ffffff;
    max-width: 420px;
}

.worries_head {
    display: flex;
    align-items: center;
    gap: 14px;
}

.worries_check {
    width: 24px;
    height: 21px;
}

.worries_txt {
    color: #FFF;
    font-size: 16px;
    line-height: 137%;
}

.worries_item {
    position: relative;
    z-index: 10;
    width: 100%;
    display: block;
}

/* worries_pc */
@media screen and (min-width: 768px) {
    .worries_bg_sp {
        display: none;
    }

    .worries_bg_pc {
        display: block;  
        width: 100%; 
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 5;
        height: 656px;
        object-fit: cover;
        object-position: center;
    }

    .worries_box {
        padding: 13px 23% 0;
    }

    .worries_contents {
        padding-bottom: 32px;
    }

    .worries_item {
        max-width: 520px;
        margin: 0 auto;
    }
}

/* worries_point_pc */
.worries_point {
    position: relative;
    margin-top: -135px;
    z-index: 1;
}

.worries_point_bg {
    width: 100%;
    display: block;
    height: 508px;
}

.worries_point_contents {
    position: absolute;
    top: 145px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 22px 17.6%;
    gap: 22px;
    line-height: 175%;
}

.worries_point_ttl {
    text-align: center;
}

.worries_point_ul {
    text-decoration: underline;
    text-decoration-style: solid;
}

/* worries_point_pc */
@media screen and (min-width: 768px) {
    .worries_point {
        margin-top: -340px;
    }

    .worries_point_contents {
        gap: 28px;
        padding: 0 17.6%;
        top: 365px;
        text-align: center;
    }

    .worries_down_pc {
        display: none;
    }

    .worries_point_bg {
        height: 630px;
    }
}

/* kaiketu */
.kaiketu {
    position: relative;
    background-image: url("../img/or_bg.png");
    background-size: cover;
    background-position: center;
}

.kaiketu_box {
    position: relative;
    padding-top: 40px;
    margin: 0 9.6%;
}

.kaiketu_img {
    position: absolute;
    margin-top: -70px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    max-height: 140px;
}

.kaiketu_head {
    margin-top: 80px;
    line-height: 175%;
}

.kaiketu_or {
    color: #FF8400;
}

.kaiketu_block {
    display: flex;
    flex-direction: column;
}

.kaiketu_contents {
    margin-top: 28px;
    display: flex;
    padding: 23px 31px;
    flex-direction: column;
    align-items: center;
    border-radius: 15px;
    border: 2px solid #FF8400;
    background: #FFF;
    box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.25);
}

.kaiketu_lead {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
}

.kaiketu_item {
    width: 60%;
}

.kaiketu_txt {
    font-weight: 400;
    line-height: 137%;
}

.down_icon_kaiketu {
    margin: 28px 0;
    width: 8%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
}

.kaiketu_point {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.kaiketu_point_lead {
    font-weight: 700;
    text-align: center;
    margin-bottom: 6px;
}

.kaiketu_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.kaiketu_support {
    width: 100%;
    max-width: 300px;
}

.kaiketu_item_support {
    margin-top: -30px;
    width: 60%;
    max-width: 200px;
}

.kaiketu_subttl {
    width: 60%;
    margin: 6px auto;
    max-width: 250px;
}

.kaiketu_ttl {
    padding-bottom: 28px;
    text-align: center;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.10);
    font-size: 3rem;
    font-weight: 900;
    background: var(--ye-or, linear-gradient(90deg, #F4BF02 0%, #F57901 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
}

/* kaiketu_pc */
@media screen and (min-width: 768px) {
    .kaiketu_box {
        padding-top: 60px;
        margin: 0 auto;
        padding-left: 9.6%;
        padding-right: 9.6%;
    }

    .kaiketu_img {
        margin-top: -90px;
    }

    .kaiketu_head {
        margin-top: 70px;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .kaiketu_block {
        flex-direction: row;
        gap: 42px;
        margin-top: 40px;
    }

    .kaiketu_contents {
        flex: 1;
        margin-top: 0;
    }

    .kaiketu_item {
        width: 50%;
        margin: 20px 0;
    }

    .down_icon_kaiketu {
        width: 3%;
        margin: 20px 0;
    }

    .kaiketu_point {
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .kaiketu_point_lead br {
        display: none;
        font-size: 2rem;
    }

    .kaiketu_container {
        flex-direction: row;
        justify-content: center;
        align-items: baseline;
        max-width: 700px;
    }

    .kaiketu_support {
        max-width: 400px;
        margin-left: 245px;
    }

    .kaiketu_item_support {
        width: 45%;
        max-width: 250px;
        margin-top: 0;
        position: relative;
        left: -50px;
    }

    .kaiketu_subttl {
        width: 30%;
        max-width: 300px;
        margin-top: -5px;
    }

    .kaiketu_ttl {
        font-size: 4rem;
        margin-bottom: 20px;
    }
}

/* point */
.point {
    position: relative;
}

.point_ttl_bg {
    position: absolute;
    right: 0;
    width: 70%;
    z-index: 1;
    top: -20px;
    max-width: 300px;
}

.point_ttl_img {
    position: relative;
    margin-top: 75px;
    margin-left: 36px;
    width: 141px;
    height: 24px;
    aspect-ratio: 47/8;
    z-index: 2;
}

.point_ttl {
    font-size: 2rem;
    font-weight: 700;
    line-height: 150%;
    margin-top: 10px;
    margin-left: 35px;
    position: relative;
    z-index: 2;
}

.point_ttl_txt {
    font-size: 2rem;
    font-weight: 700;
    line-height: 150%;
    margin-left: 35px;
    position: relative;
    z-index: 2;
}

.point_or {
    font-size: 2.8rem;
    color: var(--primary-orange);
}

.point_ul {
    width: 118.208px;
    height: 21.943px;
    transform: rotate(2.148deg);
    margin-left: 40px;
    margin-top: -10px;
    position: relative;
    z-index: 2;
}

.point_list {
    min-width: 100%;
    margin-top: 26px;
    justify-content: center;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 26px;
    position: relative;
    z-index: 2;
}

.point_list_block {
    display: flex;
    width: 101px;
    height: 101px;
    padding: 13px 6px;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px; 
    background-color: var(--primary-orange);
    border-radius: 55px;
    align-items: center;
}

.point_list_ttl {
    color: #FFE8D0;
    font-family: Futura;
    font-size: 1.4rem;
}

.point_list_txt {
    color: #FFF;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
}

.plus_or {
    width: 5%;
}

.point01_bg,
.point02_bg,
.point03_bg {
    padding: 0 9.6%;
    position: relative;
}

.point01_contents,
.point03_contents {
    display: flex;
    padding: 19px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    border-radius: 0 15px 0 0;
    background: rgba(255, 255, 255, 0.80);
    box-shadow: 4px -10px 10px 0 rgba(0, 0, 0, 0.10);
    position: absolute;
    margin-top: -36px;
    margin-right: 72px;
}

.point01_head,
.point02_head,
.point03_head {
    color: #FF8400;
    font-family: Futura;
    font-size: 2.5rem;
    font-style: normal;
}

.point01_subttl01 {
    display: flex;
    padding: 6px 11px;
    justify-content: center;
    align-items: center;
    background: linear-gradient(90deg, #F3BF02 0%, #F47900 100%);
    color: #FFF;
    font-size: 1.8rem;
    font-weight: 700;
}

.point01_subttl02 {
    display: flex;
    padding: 6px 11px;
    background: linear-gradient(90deg, #F3BF02 0%, #F47900 100%);
    color: #FFF;
    font-size: 1.8rem;
    font-weight: 700;
}

.point01_txt,
.point02_txt,
.point03_txt {
    font-weight: 400;
    line-height: 175%;
}


.point02_bg {
    margin-top: 250px;
    position: relative;
}

.point02_contents {
    margin: -40px 0 0 72px;
    padding: 24px 24px 0 24px;
    border-radius: 15px 0 0 0;
    background: rgba(255, 255, 255, 0.80);
    box-shadow: -4px -10px 10px 0 rgba(0, 0, 0, 0.10);
    position: absolute;
    display: flex;
    flex-direction: column;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 28px;
}

.point02_subttl01 {
    width: 196px;
    display: flex;
    padding: 7px 5px;
    background: linear-gradient(90deg, #F3BF02 0%, #F47900 100%);
    color: #FFF;
    font-size: 1.8rem;
    font-weight: 700;
}

.point02_subttl02 {
    width: 111px;
    padding: 8px 5px;
    display: flex;
    padding: 7px 5px;
    background: linear-gradient(90deg, #F3BF02 0%, #F47900 100%);
    color: #FFF;
    font-size: 1.8rem;
    font-weight: 700;
}

.point03_bg {
    top: 285px;
}

.point03_contents {
    margin-top: 220px;
}

.point03_subttl {
    display: flex;
    width: 249px;
    padding: 7px 6px;
    justify-content: center;
    align-items: center;
    color: #FFF;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(90deg, #F3BF02 0%, #F47900 100%);
}

/* point_pc */
@media screen and (min-width: 768px) {
    .point_ttl_bg {
        margin-top: 20px;
        margin-right: 16%;
        max-width: 400px;
    }

    .point_ttl_img,
    .point_ttl,
    .point_ttl_txt,
    .point_ul {
        left: 28%;
    }

    .point_ttl_img {
        top: 45px;
    }

    .point_ttl {
        top: 40px;
        font-size: 2.4rem;
        left: 29%;
    }

    .point_ttl_txt {
        top: 32px;
        font-size: 2.4rem;
    }

    .point_or {
        font-size: 3rem;
    }

    .point_ul {
        top: 34px;
    }

    .plus_or {
        width: 1.5%;
    }

    .point_list {
        right: 15%;
        top: 16px;
    }

    .point01_bg,
    .point02_bg,
    .point03_bg {
        max-width: 40%;
    }

    .point01_bg {
        margin-top: 4%;
    }

    .point01_contents {
        margin-top: -26px;
        left: 100px;
        max-width: 22%;
    }

    .point02_bg {
        margin-top: -14%;
        left: 30%;
    }

    .point02_contents {
        margin-top: -23px;
        left: 33%;
        max-width: 22%;
    }

    .point03_bg {
        top: 12%;
        margin-top: -14%;
        left: 60%;
    }

    .point03_contents {
        margin-top: -1%;
        left: 65%;
        max-width: 22%;
    }
}

/* katuyo */
.katuyou_ttl {
    margin: 460px auto 0;
    width: 70%;
}

.katuyou_subttl {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 1.4px;
    margin: 18px 0;
    text-align: center;
}

.katuyou_or {
    color: #FF8400;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1.8px;
}

.katuyou_txt {
    font-weight: 400;
    line-height: 137%;
    margin: 0 25px;
}

.katuyou_ul {
    font-weight: 700;
    line-height: 22px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

/* katuyou_pc */
@media screen and (min-width: 768px) {
    .katuyou_ttl {
        max-width: 30%;
        margin-top: 320px;
    }

    .katuyou_subttl {
        font-size: 2.4rem;
    }

    .katuyou_or {
        font-size: 2.4rem;
    }

    .katuyou_txt {
        max-width: 60%;
        margin: 0 auto;
    }
}

/* hosyo */
.hosyo_sp {
    margin-top: 45px;
}

.hosyo_pc {
    display: none;
}

/* katuyou_pc */
@media screen and (min-width: 768px) {
    .hosyo_sp {
        display: none;
    }
    
    .hosyo_pc {
        margin-top: 65px;
        display: block;
        width: 100%;
    }
}

/* flow */
.flow {
    position: relative;
}

.flow_bg {
    width: 100%;
    display: block;
    height: 878px;
}

.flow_block {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.flow_ttlbg {
    color: rgba(255, 255, 255, 0.80);
    font-family: Futura;
    font-size: 8.4rem;
    letter-spacing: 8.4px;
    margin: 0;
    line-height: 1;
    text-align: center;
    margin-top: 35px;
}

.flow_ttl {
    margin-top: -65px;
    position: relative;
    z-index: 1;
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
}

.flow_ttl::after {
    content: "";
    display: block;
    width: 179px;
    margin: 0 auto;
    margin-top: 6px;
    border-bottom: 1px solid var(--primary-black);
}

.flow_ttl_or {
    color: var(--primary-orange);
}

.flow_container {
    display: flex;
    flex-direction: column;
    margin: 50px 17.5px 0;
}

.down_icon_flow {
    margin: 18px auto;
}

.flow_box {
    display: flex;
    height: 130px;
    padding: 17px;
    align-items: center;
    gap: 20px;
    border-radius: 15px;
    border: 2px solid #FF8400;
    background: #FFF;
    box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.25);
}

.flow_step {
    margin-left: 10px;
    font-weight: 500;
}

.flow_lead {
    color: #FF8400;
    font-family: Futura;
    font-size: 1.8rem;
}

.flow_number {
    color: #FF8400;
    font-family: Futura;
    font-size: 3rem;
    font-weight: 700;
    margin-top: -5px;
}

.flow_head {
    font-weight: 700;
}

.flow_txt {
    font-size: 1.4rem;
    font-weight: 400;
    margin-top: 8px;
}

.btn {
    margin: 17px 0;
}

@media screen and (min-width: 768px) {
    .flow_bg {
        height: 660px;
    }
    .flow_block {
        margin-top: 20px;
    }

    .flow_container {
        margin: 50px auto 0;
        max-width: 1200px;
    }

    .flow_contetns {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 5px;
        padding: 18px 16px;
        text-align: center;
    }

    .flow_box {
        display: block;
        max-width: 240px;
        min-height: 250px;
        height: auto;
    }

    .flow_head {
        margin: 14px 0;
    }

    .down_icon_flow {
        margin: 0;
        transform: rotate(-90deg);
        height: auto;
    }
}

/* creator */
.creator {
    margin-top: 50px;
    padding: 65px 0 30px;
    overflow: hidden;
}

.creator_ttl {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.creator_icon {
    position: absolute;
    top: -22px;
    left: -70px;
    width: 120px;
    object-fit: cover;
}

.creator_ul {
    width: 132.36px;
    height: 24.57px;
    display: block;
    margin: 0 auto 30px;
    margin-top: -8px;
}

.creator_slider {
    width: 100%;
    overflow: hidden;
}

.creator_track {
    display: flex;
    width: max-content;
    will-change: transform;
    transform: translateZ(0);
}

.creator_track.is-loaded {
    animation: scroll 20s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.creator_box {
    position: relative;
    flex-shrink: 0;
    border-radius: 15px;
    overflow: hidden;
    margin-right: 20px;
}

.creator_img {
    display: block;
    width: auto;
    height: 375px;
    background-color: #fff;
}

.creator_info {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
}

.creator_job_bk {
    text-shadow: 0 0 4px #666;
    font-family: Abel;
    font-size: 2rem;
    font-weight: 400;
    margin: 0 0 4px 0;
}

.creator_name_bk {
    text-shadow: 0 0 4px #666;
    font-family: Abel;
    font-size: 2.4rem;
    font-weight: 400;
    margin: 0;
}

.creator_job_wh {
    color: #FFF;
    text-shadow: 0 0 4px #FFF;
    font-family: Abel;
    font-size: 2rem;
    font-weight: 400;
    margin: 0 0 4px 0;
}

.creator_name_wh {
    color: #FFF;
    text-shadow: 0 0 4px #fff;
    font-family: Abel;
    font-size: 2.4rem;
    font-weight: 400;
    margin: 0;
}

/* creator_pc */
@media screen and (min-width: 768px) {
    .creator {
        padding-top: 30px;
    }

    .creator_ttl br {
        display: none;
    }

    .creator_track {
        animation: none !important;
        transform: none !important;
        width: 100%;
    }

    .creator_second {
        display: none;
    }

    .creator_slider {
        margin: 0 auto;
        overflow: visible;
    }

    .creator_track {
        padding: 0 30px;
        display: flex;
        justify-content: space-between;
    }

    .creator_box {
        margin-right: 0;
        width: calc((100% - 80px) / 5); /* 5人分 */
    }

    .creator_box:nth-child(n+6) {
        display: none;
    }

    .creator_img {
        min-width: 200px;
        height: 375px;
        object-fit: cover;
        object-position: center;
    }
}

/* voice */
.voice {
    padding: 0 5.5%;
    margin-top: 40px;
}

.voice_header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.voice_header::before,
.voice_header::after {
    content: '';
    flex: 1;
    height: 2px;
    background: #333;
}

.voice_header::before {
    margin-right: 20px;
}

.voice_header::after {
    margin-left: 20px;
}

.voice_ttl {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 1.1px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.voice_icon {
    color: #FFF;
    font-size: 3rem;
    font-weight: 700;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #FF8400;
    box-shadow: 0 0 8px 0 #FF8400;
}

.voice_block {
    display: flex;
    padding: 21px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 14px;
    border-radius: 15px;
    background: #F5EEE6;
    margin-bottom: 28px;
}

.voice_img {
    width: 30%;
}

.voice_name {
    font-size: 1.8rem;
}

.voice_head {
    font-weight: 700;
    line-height: 137.5%;
}

.voice_txt {
    font-weight: 400;
    line-height: 137.5%;
}

/* voice_pc */
@media screen and (min-width: 768px) {
    .voice {
        padding: 0 25px;
    }

    .voice_header {
        margin-top: 10px;
    }

    .voice_list {
        display: inline-flex;
        gap: 28px;
    }

    .voice_block {
        display: flex;
        padding: 14px 21px;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .voice_img {
        height: 90px;
        width: auto;
    }
}

/* price0 */
.price0 {
    position: relative;
    margin-top: 70px;
    margin-left: auto;
    margin-right: auto;
}

.price0_bg {
    width: 100%;
    height: 500px;
    display: block;
}

.price0_content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 0 9.6%;
}

.price0_ttlbg {
    color: rgba(255, 255, 255, 0.20);
    text-align: center;
    font-family: Futura;
    font-size: 8.4rem;
    font-weight: 500;
    letter-spacing: 8.4px;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.price0_ttl {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: #FFF;
    text-align: center;
    text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.25);
    font-size: 2.4rem;
    font-weight: 700;
    white-space: nowrap;
}

.beginner_icon {
    position: absolute;
    top: 120px;
    left: 40px;
    width: 60px;
    max-width: 60px;
    height: auto;
    z-index: 3;
}

.price0_box {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 50px;
    border: 4px solid transparent;
    border-image: linear-gradient(90deg, #FE7A01 0%, #F40902 100%) 1;
    border-top: none;
    position: relative;
    z-index: 1;
}

.price0_contents {
    padding: 18px 31.5px 25px;
    background: #FFF;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price0_lead {
    background: linear-gradient(90deg, #FF8400 0%, #FF0000 100%);
    padding: 11px;
    text-align: center;
}

.price0_subttl {
    color: #FFF;
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
}

.price0_head {
    font-weight: 700;
    line-height: 137%;
}

.price0_block {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.price0_under {
    font-size: 1.6rem;
    font-weight: 700;
}

.price0_price {
    font-size: 4.5rem;
    font-family: Futura;
    font-weight: 700;
    background: linear-gradient(90deg, #FE7A01 0%, #F40902 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price0_money {
    font-size: 1.4rem;
    font-weight: 400;
}

.price0_mach {
    display: flex;
    width: 153px;
    height: 29px;
    padding: 4px 20px;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    background-color: var(--primary-black);
}

.price0_mach_txt {
    color: #FFF;
    font-size: 1.8rem;
    font-weight: 700;
}

.price0_txt {
    font-size: 1.4rem;
    font-weight: 400;
    text-align: left;
    margin-top: 14px;
}

/* price0_pc */
@media screen and (min-width: 768px) {
    .price0_content {
        padding: 0;
        height: 100%;
    }
    
    .price0_ttlbg {
        color: rgba(255, 255, 255, 0.65);
        margin-right: 40%;
        top: 120px;
    }

    .price0_ttl {
        left: 30%;
        top: 265px;
        font-size: 3rem;
    }

    .beginner_icon {
        margin-top: -45px;
        left: 61%;
    }

    .price0_box {
        margin-top: -40px;
        min-width: 300px;
        max-width: 28%;
        left: 60%;
    }

    .price0_txt {
        padding: 0 30px;
    }
}


/* mach */
.mach {
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

.mach_bg {
    width: 100%;
    display: block;
    height: 770px;
}

.mach_ttlimg {
    position: absolute;
    top: 0;
    width: 269px;
    display: block;
    z-index: 2;
    margin: 36px auto 0;
}

.mach_block {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding-top: 61px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
}

.mach_ttlgroup {
    position: relative;
    margin-bottom: 20px;
}

.mach_ttl {
    text-align: center;
    font-weight: 700;
    line-height: 137.5%;
}

.mach_or {
    color: var(--primary-orange);
}

.mach_head {
    font-weight: 400;
    line-height: 137.5%;
    padding: 10px 4px 0;
}

.mach_lead {
    font-weight: 400;
    line-height: 175%;
    padding: 0 28.5px;
}

.mach_weight {
    font-weight: 700;
    line-height: 175%;
}

.mach_img {
    padding: 0 56px;
    max-height: 200px;
}

.mach_txt {
    font-weight: 700;
    line-height: 175%;
    padding: 0 36.5px;
}

.mach_txt_or {
    color: var(--primary-orange);
    font-weight: 700;
    line-height: 175%;
}

.btn_inner_mach {
    padding: 0 9.6%;
}

.btn_mach {
    width: 100%;
    display: block;
    border-radius: 26px;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
    margin: 0;
}

/* mach_pc */
@media screen and (min-width: 768px) {
    .mach_bg {
        width: 100%;
        display: block;
        height: 780px;
    }

    .mach_block {
        margin-top: 10px;
    }
    
    .mach_lead {
        max-width: 50%;
    }

    .mach_txt {
        max-width: 60%;
    }

    .btn_inner_mach {
        padding: 14px 32% 16px;
    }
}

/* plan */
.plan {
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

.plan_bg {
    width: 100%;
    display: block;
    height: 1200px;
}

.plan_contents {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding-top: 17px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.plan_block {
    top: 0;
    left: 0;
    width: 100%;
}

.plan_ttlbg {
    color: rgba(255, 255, 255, 0.80);
    font-family: Futura;
    font-size: 8.4rem;
    letter-spacing: 8.4px;
    margin: 0;
    line-height: 1;
    text-align: center;
    margin-top: 25px;
}

.plan_ttl {
    margin-top: -62px;
    position: relative;
    z-index: 1;
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
}

.plan_ttl::after {
    content: "";
    display: block;
    width: 179px;
    margin: 0 auto;
    margin-top: 4px;
    border-bottom: 1px solid var(--primary-black);
}

.plan_subttl {
    margin-top: 30px;
    font-size: 1.4rem;
    font-weight: 700;
}

.plan_or {
    color: var(--primary-orange);
}

.plan_head {
    font-size: 1.4rem;
    font-weight: 400;
    text-align: left;
}

.plan_list {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80%;
    gap: 28px;
}

.plan01,
.plan02,
.plan03 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    padding: 26px 30px;
    background-color: #fff;
    border-radius: 15px;
    border: 5px solid #d9d9d9;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
}

.plan02 {
    border: 5px solid var(--primary-beiju);
}

.plan03 {
    border: 5px solid var(--primary-red);
}

.plan01_name,
.plan02_name,
.plan03_name {
    font-size: 2rem;
    font-weight: 700;
}

.plan01_icon,
.plan02_icon,
.plan03_icon {
    width: 72px;
    height: auto;
    max-width: 72px;
}

.plan02_icon,
.plan03_icon {
    margin-top: 14px;
}

.plan01_price {
    color: var(--primary-gray);
    font-size: 2rem;
    font-weight: 700;
}

.plan01_size {
    font-size: 5rem;
}

.plan01_txt,
.plan02_txt,
.plan03_txt {
    font-weight: 700;
    line-height: 137.5%;
    margin-top: 10px;
}

.plan02_price {
    color: var(--primary-beiju);
    font-size: 2rem;
    font-weight: 700;
}

.plan02_size {
    font-size: 5rem;
}

.plan03_price {
    color: var(--primary-red);
    font-size: 2rem;
    font-weight: 700;
}

.plan03_size {
    font-size: 5rem;
}

.plan_osusume {
    width: 42%;
    margin-top: -360px;
    position: absolute;
    z-index: 3;
    max-height: 90px;
    max-width: 150px;
}

.pricelist_down_wrap {
    position: relative;
    width: 100%;
}

.pricelist_down {
    position: absolute;
    min-width: 20px;
    left: 50%;
    transform: translateX(-50%);
    top: 4px;
    z-index: 20;
}

.pricelist_ttl {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    margin-top: 36px;
}

.pricelist_ttl::after {
    content: "";
    display: block;
    width: 179px;
    margin: 0 auto;
    margin-top: 4px;
    border-bottom: 1px solid var(--primary-black);
    margin-bottom: 18px;
}

.pricelist_img_sp {
    display: flex;
    padding: 0 36px;
    margin: 0 auto;
    max-height: 550px;
}

.pricelist_img_pc {
    display: none;
}

.pricelist_down {
    margin-top: -12px;
    width: 2.5%;
}

/* plan_pc */
@media screen and (min-width: 768px) {
    .plan_bg {
        height: 610px;
    }

    .plan_list {
        flex-direction: row;
        justify-content: center;
        align-items: stretch;
        gap: 40px;
        width: 100%;
        max-width: 1200px;
        margin-top: 10px;
        padding: 0 40px;
    }

    .plan01,
    .plan02,
    .plan03 {
        width: calc((100% - 80px) / 3);
        max-width: 320px;
    }

    .plan_osusume {
        top: 92%;
        left: 62.5%;
        min-height: 90px;
        min-width: 180px;
    }

    .pricelist_down {
        margin-top: -12px;
        width: 2%;
    }

    .pricelist_ttl {
        margin-top: 80px;
        margin-bottom: 30px;
    }

    .pricelist_img_sp {
        display: none;
    }

    .pricelist_img_pc {
        display: block;
        width: 56%;
        margin: 0 auto;
    }
}

/* qa */
.qa_block {
    text-align: center;
}

.qa_ttlbg {
    position: relative;
    color: rgba(255, 132, 0, 0.15);
    text-align: center;
    font-family: Futura;
    font-size: 8.4rem;
    letter-spacing: 8.4px;
    top: 0;
    margin-top: 35px;
}

.qa_ttl {
    position: relative;
    z-index: 1;
    font-size: 2.4rem;
    font-weight: 700;
    margin-top: -75px;
    text-align: center;
}

.qa_ttl::after {
    content: "";
    display: block;
    width: 179px;
    margin: 0 auto;
    border-bottom: 1px solid var(--primary-black);
}

/* accordion */
.qa_list {
    display: block;
    margin-left: 9.6%;
    margin-right: 9.6%;
}

.qa_contents {
    display: flex;
    flex-direction: column;
    border: 4px solid #F8EDE0;
    background: #FFF;
    margin-top: 28px;
}

.qa_contents:first-of-type {
    margin-top: 40px;
}

.qa_item {
    display: flex;
    padding: 13px 6px 13px 14px;
    align-items: center;
    gap: 10px;
    background: #F8EDE0;
    cursor: pointer;
    list-style: none;
    position: relative;
}

.qa_item::-webkit-details-marker {
    display: none;
}

.qa_item::after {
    position: absolute;
    content: '';
    top: 50%;
    right: 18px;
    width: 18px;
    height: 3px;
    background-color: var(--primary-black);
    transform: translateY(-50%);
    transition: all .3s ease-in-out;
}

.qa_item::before {
    position: absolute;
    content: '';
    top: 50%;
    right: 18px;
    width: 18px;
    height: 3px;
    background-color: var(--primary-black);
    transform: translateY(-50%) rotate(90deg);
    transition: all .3s ease-in-out;
}

.qa_contents[open] .qa_item::before {
    opacity: 0;
    transform: translateY(-50%) rotate(0deg);
}

.qa_icon {
    flex-shrink: 0;
}

.qa_txt {
    display: flex;
    width: 28px;
    height: 28px;
    padding: 1px 8px 3px 8px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #E67700;
    color: var(--primary-white);
    font-size: 1.6rem;
    font-weight: 700;
}

.qa_subttl {
    font-weight: 700;
    flex: 1;
    padding-right: 30px;
}

.qa_box {
    display: flex;
    gap: 10px;
    padding: 14px 18px 25px 14px;
}

.qa_a_icon {
    flex-shrink: 0;
}

.qa_a_icontxt {
    display: flex;
    width: 28px;
    height: 28px;
    padding: 2px 5px 4px 5px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 14px;
    border: 1px solid #E67700;
    background: #FFF;
    color: #E67700;
    font-size: 1.6rem;
    font-weight: 700;
}

.qa_a_txt {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 157%;
    flex: 1;
}

.btn_inner_qa {
    padding: 0 9.6%;
    margin-top: 28px;
}

.btn_qa {
    width: 100%;
    display: block;
    border-radius: 26px;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
    margin: 0;
}

.btn_inner_qa {
    padding: 0 9.6%;
    margin-top: 60px;
    margin-bottom: 40px;
}

.btn_qa {
    width: 100%;
    display: block;
    border-radius: 26px;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
    margin: 0;
}

/* qa_pc */
@media screen and (min-width: 768px) {
    .qa_contents {
        border: 4px solid #F8EDE0;
    }
    
    .qa_contents[open] .qa_item::before,
    .qa_item::before,
    .qa_item::after {
        display: none;
    }
    
    .qa_item {
        cursor: default;
    }
    
    .qa_box {
        display: flex;
    }

    .qa_list {
        max-width: 800px;
        margin: 0 auto;
    }
    
    .btn_inner_qa {
        padding: 24px 32% 16px;
    }

    .btn_qa {
        width: 100%;
    }
}

/* form */
.form {
    position: relative;
    padding-top: 20px;
    padding-bottom: 20px;
}

.form_bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.form_block {
    top: 0;
    left: 0;
    width: 100%;
    position: absolute;
    text-align: center;
}

.form_ttlbg {
    color: rgba(255, 255, 255, 0.80);
    font-family: Futura;
    font-size: 8.4rem;
    letter-spacing: 8.4px;
    margin: 0;
    line-height: 1;
    text-align: center;
    margin-top: 25px;
    position: relative;
}

.form_ttl {
    margin-top: -62px;
    position: relative;
    z-index: 1;
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
}

.form_ttl::after {
    content: "";
    display: block;
    width: 179px;
    margin: 0 auto;
    margin-top: 4px;
    border-bottom: 1px solid var(--primary-black);
}

.form_txt {
    top: 0;
    margin: 35px 0 25px;
    font-weight: 400;
    line-height: 175%;
    text-align: center;
    padding: 0 24px;
    position: absolute;
    z-index: 2;
}

.form_block,
.form_txt {
    position: relative;
    z-index: 1;
}

.form_or {
    color: var(--primary-orange);
}

.form.fade-in {
    padding-top: 0;
    padding-bottom: 0;
}

/* form_pc */
@media screen and (min-width: 768px) {
    .form_block {
        margin-top: 20px;
    }

    .form_txt {
        margin-top: 45px;
        max-width: 700px;
        left: 50%;
        transform: translateX(-50%);
    }
}

/* footer */
.footer {
    position: relative;
    width: 100%;
    padding: 40px 0;
}

.footer_bg_sp {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.footer_bg_pc {
    display: none;
}

.footer_contents {
    position: relative;
    z-index: 1;
    width: 100%;
    color: var(--primary-white);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 13px;
    font-weight: 400;
}

.footer_ttl {
    position: relative;
    text-align: center;
}

.footer_ttl::after {
    content: "";
    display: block;
    width: 92px;
    margin: 4px auto 0;
    border-bottom: 1px solid var(--primary-white);
}

.footer_head,
.footer_txt {
    font-size: 1.4rem;
    line-height: 157%;
}

.footer.fade-in {
    padding-top: 0;
    padding-bottom: 0;
}

/* footer_pc */
@media screen and (min-width: 768px) {
    .footer_bg_sp {
        display: none;
    }

    .footer_bg_pc {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .footer {
        position: relative;
    }

    .footer_contents {
        position: relative;
        max-width: 600px;
        margin: 0 auto;
        left: auto;
        transform: none;
        gap: 17px;
    }
}