/*--------------------------------------------------------------------------------------------------------------------*//*Header image*/
#headerImageParent {
    position: relative;
    background: #000;
    border-radius: 0 0 30% 30%;
}
#headerImageParent>img {
    width: 100%; /* divの幅に対する割合 */
    height: 450px;
    object-fit: cover; /* 画像の幅調整！ */
    opacity: 0.6;
    border-radius: 0 0 30% 30%;
}
#textOnTheHeader {
    position: absolute;
    left: 50%;
    top: 60%;
    transform: translate(-50%,-50%);
    font-size: 40px;
    padding: 0;
    margin: 0;
    color: white;
    font-weight: bold;
}
/*--------------------------------------------------------------------------------------------------------------------*//*Others*/
.flex-item-each{
    /*border-top: rgb(241, 248, 241) 2px solid;*/
}
.flex-item{
    display: flex;
    justify-content: space-between;
}

/*最後の要素以外に余白を追加*/
.flex-item:not(:last-child){
    margin-bottom: 50px;
}

/*反対バージョンを作る場合はoddをevenに変更する*/
.flex-item:nth-child(odd){
   flex-direction: row-reverse;
}

/*画像*/
.flex-item__img {
   width: 38%;
   align-items: center;
   /*padding-right: 10px;*/
}

.flex-item__img img{
    width:  250px;
    height: 100%;
    object-fit: cover;
}

/*テキスト*/
.flex-item__txt{
   width: 58%;
}

.flex-item__txt h2 {
    font-size: 18px;
    padding: 10px 0;
}

.flex-item__txt p{
    line-height: 1.5;
}

/*レスポンシブ*/
@media screen and (max-width: 767px) {
    .flex-item{
        flex-direction: column;
        align-items: center;
    }

    .flex-item:nth-child(odd) {
        flex-direction: column;
    }

    .flex-item__img {
        width: 100%;
        height: 250px;
        padding-bottom: 30px;
    }

    .flex-item__txt {
        width: 100%;
    }
}
/*--------------------------------------------------------------------------------------------------------------------*//*Plan*/
.tdBorder{
    border-right: 1px rgb(222,226,230) solid;
}
#doneeLi{
    list-style-type: none;
}
/*--------------------------------------------------------------------------------------------------------------------*//*Number of members*/
.number-of-members{
    font-size: 30px;
    font-weight: bold;
}
/*--------------------------------------------------------------------------------------------------------------------*//*Others*/
.blockTitle{
    font-size: 22px;
    font-weight: bold;
}
.blockTitleHighlight{
    display:inline-block;
    width: 150px;
    border-top: 3px rgb(107,203,183) solid;
}

.faqTitle{
    font-weight: bold;
}

.everyOtherBg{
    background-color: rgb(241, 248, 241);
}

/*how to image*/
.howToImg{
    width: 192px;
}

/*button radios*/
.welcomeButton{
    border-radius: 30px;
}
