/* ----------------------------
    トップページ専用のスタイルシート
---------------------------- */
/* スクロールしたら要素がふわっと出てくる */
.scroll_deray.firstview {
    transition: all 2s;
    /* transform: translateY(300px); */
}
.scroll_deray {
    opacity: 0;
    visibility: hidden;
    transition: all 4s;
    transform: translateY(300px);
}
.active {
    /*要素を表示させる*/
    opacity: 1;
    visibility: visible;
    /*元の位置に戻す*/
    transform: translateY(0);
}

/* fv */
.top_fv{
    width: 100%;
    width: 100vw;
    height: 100vh;
    /* height: 100%; */
}
.fv_swiper{
    width: 100%;
    height: 100%;
    position: relative;
}
.swiper-container{
    width: 100%;
    height: 100%;
}
.swiper-slide img{
    object-fit: cover;
    min-height: 100vh;
}
.fv_logo{
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 465px;
    width: 100%;
    display: block;
}

/* fv スクロールバー */
.scroll_down {
    height: 300px;
    background-color: var(--white);
}
.scrollbar_text {
    display: inline-block;
    position: absolute;
    bottom: 34%;
    padding: 10px 10px 110px;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    writing-mode: vertical-lr;
    right: 0;
    transform: translateX(-50%);
    z-index: 90;
}
.scrollbar_text span{
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--white);
}
.scrollbar {
    position: absolute;
    right: 50%;
    transform: translateX(-50%);
    bottom: 1px;
    background-color: rgba(255,255,255,0.45);
    width: 2px;
    height: 100px;
}
.scrollbar::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 2px;
    height: 100px;
    background-color: var(--white);
    animation: liner 2.5s cubic-bezier(1, 0, 0, 1) infinite;
}
/* スクロールダウンアニメーション */
@keyframes liner {
    0% {
        transform: scale(1, 0);
        transform-origin: 0 0;
    }
    30% {
        transform: scale(1, 1);
        transform-origin: 0 0;
    }
    70% {
        transform: scale(1, 1);
        transform-origin: 0 100%;
    }
    100% {
        transform: scale(1, 0);
        transform-origin: 0 100%;
    }
}
/* fv 花びら */
.flower_image{
    position: absolute;
    z-index: 50;
}
.top_flower_01{
    max-width: 70px;
    width: 100%;
    top: 0;
    left: 140px;
}
.top_flower_02{
    max-width: 118px;
    width: 100%;
    top: 82px;
    top: 40px;
    left: 0;
}
.top_flower_03{
    max-width: 46px;
    width: 100%;
    top: 36px;
    top: 66px;
    right: 220px;
}
.top_flower_04{
    max-width: 174px;
    width: 100%;
    top: 60px;
    top: 110px;
    right: 16px;
}
.top_flower_05{
    max-width: 74px;
    width: 100%;
    bottom: 78px;
    right: 0;
}
.top_flower_06{
    max-width: 66px;
    width: 100%;
    bottom: -40px;
    right: 142px;
}
.flower_image img{
    width: 100%;
}

.contents{
    background-color: var(--base_pink);
    padding: 58px 0 0;
}
.contents .contents_ttl{
    flex-direction: column;
    justify-content: center;
    padding: 0 0 1.2em;
}
.contents_ttl .jp{
    color: var(--dark_pink);
    font-size: 1.7rem;
    text-align: center;
}
.contents_ttl h2{
    color: var(--white);
    text-align: center;
}
.top_message{
    /* max-width: 672px; */
    width: 100%;
    /* margin: 0 auto; */
    position: relative;
}
.top_message_contents{
    max-width: 672px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}
/* セカンドビュー */
.sv_flower_01{
    max-width: 318px;
    width: 100%;
    top: 108px;
    left: 0;
}
.sv_flower_02{
    max-width: 160px;
    width: 100%;
    top: 118px;
    right: 82px;
}
.sv_flower_03{
    max-width: 310px;
    width: 100%;
    bottom: -100px;
    right: 0;
}
.sv_flower_04{
    max-width: 200px;
    width: 100%;
    bottom: -250px;
    left: 0;
}
.message_text p{
    padding: 0 0 1.4em;
    line-height: 2;
}
.top_schedule{
    /* max-width: 880px; */
    width: 100%;
    margin: 0 auto;
    padding: 110px 0 144px;
    position: relative;
}
.top_schedule_contents{
    max-width: 880px;
    width: 100%;
    margin: 0 auto;
}
.sv_flower_05{
    position: absolute;
    max-width: 148px;
    width: 100%;
    bottom: 0;
    right: 0;
}
.top_schedule table{
    width: 100%;
}
.top_schedule th,
.top_schedule td{
    padding: 16px 0 16px 16px;
    border-bottom: 1px solid var(--base_pink);
    border-right: 1px solid var(--base_pink);
}
.top_schedule th{
    background-color: var(--light_pink);
    width: 25%;
    font-weight: 500;
    text-align: left;
    
}
.top_schedule td{
    background-color: var(--white);
    width: 75%;
    font-weight: 300;
}
/* スケジュール背景白地 */
.item_box {
    flex-direction: column;
    align-items: flex-start;
    max-width: 440px;
    width: 100%;
    padding: 0 1em 1em 2em;
    margin: 0 auto;
    background-color: var(--white);
}
.item_box h3 {
    padding: 0 0 0 1em;
    margin: 20px 0 0;
    position: relative;
    font-size: 1.8rem;
}
.item_box h3::before {
    position: absolute;
    display: block;
    content: "";
    width: 4px;
    height: 24px;
    background-color: var(--dark_pink);
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
}
.list_disc ul {
    padding: 1em 0 0 1em;
}
.list_disc li {
    padding: 0 0 0 1em;
    position: relative;
    letter-spacing: 0.08em;
}
.list_disc li::before {
    position: absolute;
    display: block;
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--base_pink);
    top: 50%;
    left: 0;
    transform: translate(-50%, 0);
}

/* .top_contact{
    background-color: var(--light_pink);
    padding: 0 0 70px;
} */
.top_contact .bg_light_pink{
    border-radius: 40px 40px 0 0;
    padding: 0 0 70px;
}
.top_contact .contents_ttl{
    flex-direction: column;
    justify-content: center;
    padding: 68px 0 20px;
}
.top_contact .contents_ttl .jp{
    color: var(--pink);
}
.top_contact .contents_ttl h2{
    color: var(--dark_pink);
}
.top_contact .notes{
    text-align: center;
}
.wpcf7-form{
    max-width: 880px;
    width: 100%;
    margin: 58px auto 0;
}
.wpcf7-form p{
    display: block;
    margin: 18px 0;
    text-align: center;
}
.wpcf7-form label{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.wpcf7-form-control-wrap{
    width: 80%;
}
.wpcf7-form-control-wrap input,
.wpcf7-form-control-wrap textarea{
    width: 100%;
    border-color: var(--base_pink);
    border-style: solid;
    border-radius: 10px;
    padding: 10px 0;
}
.wpcf7-form-control-wrap textarea{
    border-width: 2px;
}
.wpcf7-submit{
    background-color: var(--dark_pink);
    color: var(--white);
    border-radius: 40px;
    padding: 1em;
    border: none;
    margin: 10px auto;
    max-width: 120px;
    width: 100%;
}
.wpcf7-spinner{
    display: none;
}


@media screen and (max-width: 1200px) {
    .sv_flower_01 {
        max-width: 198px;
    }
    .sv_flower_03 {
        max-width: 220px;
    }
    /* .sv_flower_04 {
        max-width: 200px;
    } */
}

@media screen and (max-width: 1024px) {
    .fv_logo {
        max-width: 325px;
    }
    .scrollbar{
        height: 56px;
    }
    .scrollbar::after {
        height: 56px;
    }
    .scrollbar_text {
        bottom: 0;
        right: 50%;
        transform: translateX(50%);
        font-size: 10px;
        padding: 10px 10px 62px;
    }
    .scrollbar_text span {
        writing-mode: horizontal-tb;
    }
    .float_flower_pc.pc_only{
        display: none;
    }
    .float_flower_sp.sp_only{
        display: block;
    }
    .top_flower_01 {
        max-width: 138px;
        width: 100%;
        top: 44px;
        left: 76px;
    }
    .top_flower_02 {
        max-width: 88px;
        width: 100%;
        top: 206px;
        left: 0px;
    }
    .top_flower_03 {
        max-width: 44px;
        width: 100%;
        top: 286px;
        left: 160px;
    }
    .top_flower_04 {
        max-width: 84px;
        width: 100%;
        bottom: 0px;
        right: 0;
    }

    .contents {
        padding: 194px 0 0;
        position: relative;
    }
    .top_message{
        position: relative;
        z-index: 0;
    }
    .top_message::after {
        position: absolute;
        display: block;
        content: "";
        background-image: url(../img/top_sv_sp_02.png);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        /* max-width: 94px; */
        width: 94px;
        height: 156px;
        top: 40%;
        left: 0;
        z-index: -1;
    }
    .top_message_contents {
        width: 80%;
    }

    .sv_flower_01 {
        max-width: 168px;
        width: 100%;
        top: 0;
        left: 0;
    }
    .sv_flower_02 {
        max-width: 88px;
        width: 100%;
        top: 118px;
        right: 0;
    }
    /* .sv_flower_05 {
        left: 0;
    } */
    .sv_flower_09{
        max-width: 100px;
        width: 100%;
        bottom: 0;
        left: 10px;
    }
    .sv_flower_10{
        max-width: 88px;
        width: 100%;
        bottom: 0;
        right: 14px;
    }

    .sp_padding_image_area{
        padding: 150px 0;
        display: block;
        position: relative;
    }
    .sv_flower_04 {
        max-width: 220px;
        width: 100%;
        bottom: -5%;
        bottom: 0;
        left: auto;
        right: 12%;
        right: 16%;
    }
    .sv_flower_05{
        max-width: 236px;
        width: 100%;
        bottom: 0;
        left: 0;
    }
    .sv_flower_06{
        max-width: 114px;
        width: 100%;
        bottom: -30px;
        right: 0;
    }
    .sv_flower_07{
        max-width: 114px;
        width: 100%;
        bottom: -56px;
        left: 200px;
    }
    .sv_flower_08{
        max-width: 104px;
        width: 100%;
        bottom: -200px;
        right: 62px;
    }
}

@media screen and (max-width: 768px) {
    /* スクロールしたら要素がふわっと出てくる */
    /* .scroll_deray.firstview {
        transition: all 2s;
    }
    .scroll_deray {
        opacity: 0;
        visibility: hidden;
        transition: all 4s;
        transform: translateY(500px);
    } */

    .fv_logo {
        max-width: 325px;
    }
    .scrollbar_text {
        display: none;
    }

    .top_flower_01 {
        max-width: 88px;
        top: 22px;
        left: 26px;
    }
    .top_flower_03 {
        top: 186px;
        left: 60px;
    }

    /* .contents {
        padding: 194px 0 0;
        position: relative;
    } */
    .top_message_contents {
        width: 80%;
    }
    .sv_flower_01 {
        max-width: 168px;
        width: 100%;
        top: 0;
        left: 0;
    }
    .sv_flower_02 {
        max-width: 88px;
        width: 100%;
        top: 118px;
        right: 0;
    }


    .sv_flower_04 {
        max-width: 230px;
        width: 100%;
        bottom: 0;
        left: auto;
        right: 20%;
    }
    .sv_flower_05 {
        max-width: 136px;
    }
    .sv_flower_06{
        max-width: 58px;
    }
    .sv_flower_07{
        max-width: 62px;
        left: 100px;
    }
    .sv_flower_08{
        max-width: 54px;
        bottom: -100px;
        right: 30px;
    }

    .top_schedule table {
        width: 90%;
        margin: 0 auto;
    }
    .top_schedule tr{
        display: flex;
        flex-direction: column;
    }
    .top_schedule th,
    .top_schedule td{
        width: 100%;
        padding: 1em;
    }

    .top_contact .bg_light_pink {
        padding: 0 32px 70px;
    }
    /* .wpcf7-form {
        padding: 0 32px;
    } */
    .wpcf7-form label{
        flex-direction: column;
        align-items: flex-start;
    }
    .wpcf7-form-control-wrap {
        width: 100%;
    }
}

@media screen and (max-width: 440px) {
    .top_flower_02 {
        max-width: 54px;
        top: 104px;
    }
    .top_flower_03 {
        top: 144px;
    }
    .top_flower_04 {
        top: auto;
        bottom: -70px;
    }
    .top_message::after {
        top: 45%;
    }
    .sp_padding_image_area {
        padding: 114px 0;
    }
    .sv_flower_04 {
        right: 30px;
    }
    .sv_flower_06 {
        bottom: -14px;
    }
    .sv_flower_07 {
        left: 90px;
        bottom: -22px;
    }

    .sv_flower_09 {
        bottom: -44px;
    }
    .sv_flower_10 {
        bottom: -30px;
    }

    .top_schedule {
        padding: 110px 0 90px;
    }
    .item_box {
        padding: 2em 1em;
    }

    .copyright {
        font-size: 1.2rem;
    }
    
}

@media screen and (max-width: 390px) {
    .sv_flower_04 {
        max-width: 178px;
        bottom: 12px;
    }
    .top_schedule th,
    .top_schedule td {
        font-size: 1.5rem;
    }

}