.sectionPlan {
    background-color: #222222;
    background-attachment: fixed;
}

.planGroup {
    width: 100%;
    margin: 0 auto;
    display: flex;
}

.planItem {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 28%;
    margin: 0 2.5%;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.planItemTall {
    transform: scale(110%);
}

.planItemBody {
    margin-top: 3vh;
    margin-bottom: 3vh;
    width: 80%;
    margin-left: 20%;
    margin-right: 20%;
}


.planItemNm {
    width: 50%;
    text-align: right;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-right: 10px;
    letter-spacing: 0.1rem;
}

.planItemValue {
    width: 50%;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 10px;
    letter-spacing: 0.1rem;
}

.planItemRecommend{
    position: absolute;
    transform: rotate(-5deg);
    top: 0.75rem;
    left: 0.75rem;
    color: #F2F2F2;
    background-color: #F21905;
    font-weight: bold;
    padding-top: 0.2rem; 
    padding-bottom: 0.3rem; 
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

/* タイトル
---------------------------- */
.planItemTitle {
    width: 100%;
    font-size: 1.3rem;
    text-align: center;
    background-color: #aaaaaa;
    padding: 1.5vh 0;
}

.planItemTitleShort {}

/* 料金
---------------------------- */
.planItemPrice {}

.planItemPricePrefix {}

.planItemPriceValue {
    font-size: 2.4rem;
    text-align: center;
}

.planItemPriceUnit {
    font-size: 1.2rem;
}

/* スキル
---------------------------- */
.planItemSkill {
    font-size: 1.05rem;
    border-radius: 10px;
    min-height: 15vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    letter-spacing: 0.1rem;
    text-decoration: underline;
}

/* プランその他
---------------------------- */
.planItemLanguage,
.planItemClass,
.planItemHours {
    display: flex;
    /* align-items: center; */
}

.planItemDetail {
    border-top: 2px solid #dddddd;
    border-bottom: 2px solid #dddddd;
    padding-top: 2vh;
    padding-bottom: 2vh;
}

/* プラン別
---------------------------- */
.textShort {
    color: #05B900;
}

.bgShort {
    background-color: #05B900;
}

.textTall {
    color: #2AA8DA;
}

.bgTall {
    background-color: #2AA8DA;
}

.textGrande {
    color: #D93D93;
}

.bgGrande {
    background-color: #D93D93;
}

.sectionPlan .sectionBody{
    position: relative;
    z-index: 2;
}


/* ----------------------------

    背景

---------------------------- */
/* 星空の背景のスタイル */
.stars {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* 星のスタイル */
.star {
    position: absolute;
    display: block;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 4px 2px rgba(#fff, 0.2);
    opacity: 0;
    /* animation: twinkle 5s infinite; */
}

/* 星がキラキラ光るアニメーション */
@keyframes twinkle {
    0% {
        opacity: 0;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: scale(1);
    }
}

/* ============================================================

    SP対応

============================================================ */
@media screen and (max-width: 1279px){
/* @media screen and (max-width: 768px){ */
    .sectionPlan{
        height: auto;
    }

    .planGroup {
        flex-wrap: wrap;
        width: 90%;
        margin-left: 5%;
        margin-right: 5%;
        margin-bottom: 10vh;
    }

    .planItem {
        height: 35rem;
        width: 100%;
        margin: 5vh 0;
    }
}