@charset "UTF-8";

/*====================
header
====================*/
.header {
    width: 100vw;
}

.header__fixed {
    background-color: rgba(254, 250, 250, 0.8);
    height: 66px;
    width: 100vw;
    padding: 20px 5.3% 0;
    display: flex;
    top: 0;
    z-index: 10;
}

.header__logo {
    font-family: "Klee One";
    line-height: 1.25;
}

.header__logo .spanIzen {
    font-size: 1.6rem;
    margin-left: 5px;
}

/* header pc */
@media screen and (min-width: 769px) {
    .header {
        width: 100vw;
        display: block;
    }

    .header__fixed {
        display: none;
    }

    .nav {
        display: block;
    }

    .nav {
        width: 23.6%;
        min-width: 340px;
        height: 100vh;
        padding: 40px 2.7%;
        border-right: 1px solid var(--color--warmGray);
        position: fixed;
        top: 0;
        left: 0;
    }

    /* pc 769px */
}

/*====================
main
====================*/
/* plan */
.section--plan {
    width: 100%;
    padding: 146px 5.3% 0;
}

.plan__title {
    width: 145px;
    text-align: center;
    margin: 0 auto;
    font-family: "Klee One";
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1;
    background-size: 8px 3px;
    background-image: linear-gradient(to right, var(--color--blewGreen) 3px, transparent 3px);
    background-position: left bottom;
    background-repeat: repeat-x;
    padding-bottom: 5px;
}

.plan__message {
    margin-top: 80px;
}

.plan__imgSp {
    position: relative;
}

.plan__imgSp::before {
    content: '';
    background-color: var(--color--warmGray);
    width: 180px;
    height: 180px;
    position: absolute;
    left: 138px;
    bottom: -30px;
    border-radius: 5px;
    display: block;
    z-index: -1;
}

.plan__imgPc {
    display: none;
}

.catchTxt {
    text-shadow: 0px 0px 5px #6A8A93;
}

.plan__topic {
    text-align: center;
    font-family: "Klee One";
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.42;
    letter-spacing: 0.1em;
    margin-top: 80px;
    position: relative;
}

.plan__topic.option,
.plan__topic.ticket {
    margin-top: 0;
    margin-bottom: 20px;
}

.plan__topic::before {
    content: '';
    width: 190px;
    height: 12px;
    background-color: var(--color--warmGray);
    border-radius: 3px;
    position: absolute;
    left: 50%;
    /* top: 68px; */
    bottom: 0;
    transform: translateX(-50%);
    z-index: -1;
}

.plan__topic.option::before,
.plan__topic.ticket::before {
    width: 120px;
}

.plan__list {
    margin-top: 20px;
    position: relative;
}

.plan__list::before {
    content: '';
    background-color: rgba(254, 250, 250, 0.9);
    background-image: url(../images/leaf1-black.png);
    background-size: cover;
    background-blend-mode: lighten;
    width: 353.522px;
    height: 159.085px;
    transform: rotate(56.33deg);
    display: block;
    position: absolute;
    right: -110px;
    top: 190px;
    z-index: -1;
}

.plan__item {
    padding: 15px 0;
    border-top: 1px solid var(--color--yomogiGray);
    border-bottom: 1px solid var(--color--yomogiGray);
}

.plan__name {
    color: var(--color--blewGreen);
    font-size: 1.8rem;
    font-weight: 500;
    position: relative;

}

.spanNumber {
    font-family: Merienda;
    font-size: 1.9rem;
    letter-spacing: 0.1em;
}

.plan__name::before {
    content: '';
    width: 30px;
    height: 30px;
    background-color: var(--color--warmGray);
    border-radius: 50%;
    display: block;
    position: absolute;
    z-index: -1;
}

.plan__price .price {
    font-family: Merienda;
    font-size: 2.6rem;
}

.plan__price .price--large {
    font-size: 3rem;
    font-weight: 600;
}

.plan__price .yen {
    font-size: 1.6rem;
    margin-right: 8px;
}

.plan__time.center {
    color: var(--color--blewGreen);
    margin: 0 auto;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.66;
}

.plan__limited {
    margin-top: 13px;
}

.plan__limitedImg {
    width: 157px;
    position: relative;
    top: 2px;
}

.plan__limitedTxt {
    font-size: 1.8rem;
    font-weight: 500;
}

.plan__wrap {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 9.3%;
    margin: 80px auto 0;
}

.plan__photo1sp,
.plan__photo2sp {
    width: 40%;
    min-width: 150px;
}

.plan__photo1sp {
    margin-top: 60px;
}

.plan__photo1pc,
.plan__photo2pc {
    display: none;
}

/* plan pc */
@media screen and (min-width: 769px) {
    .section--plan {
        width: 76.4%;
        margin: 0 0 0 auto;
        padding: 80px 6.6%;
    }

    .plan__title {
        width: 216px;
        font-size: 3.6rem;
        letter-spacing: 0.1em;
        padding-bottom: 8px;
    }

    .plan__imgSp {
        display: none;
    }

    .plan__imgPc {
        display: block;
        position: relative;
    }

    .plan__imgPc::before {
        content: '';
        background-color: var(--color--warmGray);
        width: 300px;
        height: 300px;
        position: absolute;
        right: -270px;
        bottom: -80px;
        border-radius: 5px;
        display: block;
        z-index: -1;
    }

    .plan__topic {
        margin: 140px auto 0;
    }

    .plan__topic.option {
        margin-bottom: 40px;
    }

    .plan__topic.ticket {
        margin-bottom: 25px;
    }

    .plan__topic::before {
        width: 300px;
    }

    .plan__list {
        /* width: 59%; */
        max-width: 650px;
        margin: 20px auto 0;
    }

    .plan__list::before {
        width: 360px;
        height: 162px;
        right: -240px;
        top: 222px;
    }

    .plan__item {
        display: flex;
        padding: 20px 0;
        justify-content: space-between;
        align-items: flex-start;
    }

    .plan__item:nth-of-type(n+3) {
        flex-direction: column;
        /* gap: ; */
    }

    .plan__name {
        /* width: 231px; */
        font-size: 2.2rem;
        line-height: 1.63;
    }

    .plan__name span {
        font-size: 2.4rem;
    }

    .plan__name::before {
        width: 40px;
        height: 40px;
    }

    .plan__price .price {
        font-size: 3.4rem;
    }


    .plan__price .yen {
        font-size: 2rem;
        margin-right: 10px;
    }

    .plan__price--campaign {
        margin-top: 72px;

    }

    .plan__price .price--large {
        font-size: 4.2rem;
    }

    .plan__limited {
        margin-top: 20px;
        position: absolute;
        left: -34%;
    }

    .plan__limitedTxt {
        white-space: nowrap;
    }

    .plan__outer {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

    .plan__inner {
        width: 355px;
        position: relative;
    }

    .plan__time.center {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .plan__wrap {
        justify-content: center;
        gap: 5.45%;
        margin: 160px auto 0;
    }

    .plan__photo1sp,
    .plan__photo2sp {
        display: none;
    }

    .plan__photo1pc,
    .plan__photo2pc {
        display: block;
        width: 38.6%;
        min-width: 425px;
    }

    .plan__photo1pc {
        margin-top: 80px;
    }

    /* pc 769px */
}

/* flow */
.section--flow {
    width: 100%;
    padding: 80px 5.3%;
}

.flow__title {
    width: 203px;
    text-align: center;
    margin: 0 auto;
    font-family: "Klee One";
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1;
    background-size: 8px 3px;
    background-image: linear-gradient(to right, var(--color--blewGreen) 3px, transparent 3px);
    background-position: left bottom;
    background-repeat: repeat-x;
    padding-bottom: 5px;
}

.flow__list {
    /* width: 100%; */
    width: 89.3%;
    margin: 40px auto 0;
    padding-left: 20px;
    border-left: 2px solid var(--color--yomogiGray);
}

.flow__item {
    margin-top: 80px;
}

.flow__item:first-of-type {
    margin-top: 0;
}

.flow__img img {
    /* width: 315px; */
    width: 84%;
    border-radius: 5px;
    border: 1px solid var(--color--yomogiGray);
}

.flow__process {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.8;
    margin-top: 20px;
    position: relative;
}

.flow__process span {
    color: var(--color--blewGreen);
    font-family: Merienda;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2.25;
    letter-spacing: 0.1em;
    margin-right: 10px;
}

.flow__process::before {
    content: '';
    width: 16px;
    height: 16px;
    background-color: var(--color--blewGreen);
    border-radius: 50%;
    position: absolute;
    left: -29px;
    top: 13px;
}

.flow__txt {
    /* width: 315px; */
    width: 84%;
    line-height: 2;
}

/* flow pc */
@media screen and (min-width: 769px) {
    .section--flow {
        width: 76.4%;
        margin: 0 0 0 auto;
        padding: 80px 6.6% 100px;
    }

    .flow__title {
        width: 203px;
        font-size: 2.8rem;
        line-height: 1;
    }

    .flow__list {
        width: 100%;
        /* max-width: 82.7%; */
        width: 910px;
        margin: 40px auto 0;
        padding-left: 0;
        border-left: none;
        position: relative;
    }

    .flow__item {
        display: flex;
        justify-content: space-between;
        margin-top: 97px;
    }

    .flow__img img {
        width: 315px;
    }

    .flow__process {
        font-size: 2.3rem;
        line-height: 1.74;
        letter-spacing: 0.92px;
        margin-top: 0;
    }

    .flow__process span {
        font-size: 2.2rem;
        line-height: 1.82;
    }

    .flow__process::before {
        left: -37px;
        top: 14px;
    }

    .flow__process::after {
        content: '';
        width: 2px;
        height: 308px;
        background-color: var(--color--yomogiGray);
        left: -30px;
        top: 0;
        display: block;
        position: absolute;
        z-index: -1;
    }

    .flow__process.last::after {
        height: 230px;
    }

    .flow__txt {
        width: 540px;
        line-height: 2;
        letter-spacing: 0.08em;
    }

    /* pc 769px */
}