/*
	top
-----------------------------------------------------------------------------------------------*/
/* 装飾 */
.category__base-eventList::after {
    width: 85px;
    height: 90px;
    background: url(../images/item_category_beginner.png) no-repeat center center / contain;
}
.cmn__topTxt{
    margin-bottom: 50px;
    text-align: center;
}
.cmn__heading span{
    color: var(--clDOrg);
    font-size: 3.2rem;
}

/*
	4つのポイント
-----------------------------------------------------------------------------------------------*/
.cmn__list{
    gap: 40px 0;
}
.cmn__list li{
    padding-top: 20px;
}
/* ポイントナンバー */
.cmn__listNum{
    padding: 10px 15px;
    color: var(--clWh);
    line-height: 1.0;
    background-color: var(--clBw);
    border-radius: 50px;
    font-size: 1.4rem;
    font-weight: var(--fExBold);
    position: absolute;
    transform: translateX(-50%);
    top: 0;
    left: 50%;
}
.cmn__listNum span{
    font-size: 20px;
}
/* テキスト */
.cmn__listTtl{
    text-align: center;
}

/*
	イベントの流れ（参加まで・当日）
-----------------------------------------------------------------------------------------------*/
.beginner__eventFlow{
    display: flex;
    flex-direction: column;
    gap: 60px 0;
    padding: 35px;
    background-color: var(--clBeg);
    position: relative;
}
[class^="beginner__flow"]{
    text-align: center;
}
/* img */
.flow__img{
    display: flex;
    margin-top: 10px;
    border-radius: 18px;
    overflow: hidden;
}

/* 参加まで
============================== */
.flow__stepJoin{
    color: var(--clWh);
    background-color: var(--clDOrg);
}

/* 当日
============================== */
.flow__stepOtd{
    color: var(--clDOrg);
    background-color: var(--clWh);
}

/*
	キャンセル規定
-----------------------------------------------------------------------------------------------*/
.cmn__infoBoxArea{
    margin-top: 60px;
}
.beginner__infoBoxList{
    display: flex;
    flex-wrap: wrap;
    gap: 5px 0;
}
.beginner__infoBoxList li{
    width: 100%;
}
.beginner__infoBoxList li:first-child{
	font-size: 1.6rem;
}

/*
	pc調整
-----------------------------------------------------------------------------------------------*/
@media screen and (min-width:1024px){
/*
        common
    -----------------------------------------------------------------------------------------------*/
    /* 下層見出し
    ============================== */
    .cmn__headingTxtS{
        text-align: center;
    }
}